-
Notifications
You must be signed in to change notification settings - Fork 16
/
install.sh
executable file
·121 lines (102 loc) · 4.33 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/bin/bash
set -euo pipefail
# You can execute this script with:
# bash <(curl -H 'Pragma: no-cache' -H 'Cache-Control: no-cache' -s 'https://raw.githubusercontent.com/alombarte/raspberry-osmc-automated/master/install.sh') /home/osmc/.raspberry-osmc-automated
if [ $# != 1 ]
then
echo "Installation of raspberry-osmc-automated"
echo "--USAGE: $0 install_path"
exit 0
fi
if [ "root" = "$(whoami)" ]; then
echo "Do not run this script as root. The sudo command will be used when needed."
exit 0
fi
INSTALLATION_FOLDER=$1
SETTINGS_FILE="$INSTALLATION_FOLDER/bash/settings.cfg"
SAMPLE_RSS_FEED="http://showrss.info/rss.php?user_id=51436&hd=2&proper=1"
HOME_FOLDER="/home/osmc"
echo "Starting installation in path $INSTALLATION_FOLDER"
echo "Press ENTER to proceed or CTRL+C to abort"
echo "--------------------------------------------------"
read -r _
curl -L -H 'Pragma: no-cache' -H 'Cache-Control: no-cache' -O 'https://raw.githubusercontent.com/alombarte/raspberry-osmc-automated/master/install.sh'
# DOWNLOAD TARBALL
bash <(curl -s https://raw.githubusercontent.com/alombarte/raspberry-osmc-automated/master/bash/download_tarball.sh) "$INSTALLATION_FOLDER"
# Add installation path to settings
echo "INSTALLATION_FOLDER=$INSTALLATION_FOLDER" >> "$SETTINGS_FILE"
# Ask user for default paths
echo "--------------------------------------------------"
echo "Take a few seconds to customize your installation."
echo ""
echo "Paste your RSS feed URL below or press ENTER to use sample"
echo "E.g: : $SAMPLE_RSS_FEED"
read -r CONFIG_RSS_FEED
if [ "$CONFIG_RSS_FEED" == "" ] ; then
CONFIG_RSS_FEED=$SAMPLE_RSS_FEED
echo "No RSS provided, using sample feed $CONFIG_RSS_FEED"
fi
# Add RSS feed to settings
echo "CONFIG_RSS_FEED=\"$CONFIG_RSS_FEED\"" >> "$SETTINGS_FILE"
# Confirm IP
IP_GUESS=$(ifconfig | awk '/inet /{print $2}' | grep -v 127.0.0.1 | tail -n 1)
echo ""
echo "IP address (or ENTER to accept) [$IP_GUESS]: "
read -r IP
if [ "$IP" == "" ] ; then
IP=$IP_GUESS
fi
IP_RANGE=$(echo "$IP" | sed -r 's/([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)[0-9]{1,3}/\1*/')
echo "OSMC_HOST=\"$IP\"" >> "$SETTINGS_FILE"
echo "TRANSMISSION_WHITELIST_RANGE=\"$IP_RANGE\"" >> "$SETTINGS_FILE"
echo ""
echo "Are you storing content on a external storage? If so, what is the mountpoint? (e.g: /media/KINGSTON)"
echo "Press ENTER to skip, or write the path now:"
read -r EXTERNAL_STORAGE
if [ "$EXTERNAL_STORAGE" == "" ] || [ ! -d "$EXTERNAL_STORAGE" ] ; then
echo "Omitting external storage. Preparing folder structure..."
EXTERNAL_STORAGE=$HOME_FOLDER
mkdir -p "$EXTERNAL_STORAGE"/{Downloads/Incomplete,Movies,Music,Pictures,"TV Shows"}
else
bash "$INSTALLATION_FOLDER/bash/folder_structure.sh" "$EXTERNAL_STORAGE"
echo "EXTERNAL_STORAGE=\"$EXTERNAL_STORAGE\"" >> "$SETTINGS_FILE"
fi
echo ""
echo "In what language do you want the subtitles? "
echo "(Two letter code: en,es,fr,de,it...) : "
read -r SUBTITLES_LANGUAGE
if [ "$SUBTITLES_LANGUAGE" == "" ] ; then
echo "Default to English subtitles"
SUBTITLES_LANGUAGE="en"
fi
echo "--------------------------------------------------"
# INSTALLATION BEGIN
echo "All set. INSTALLING..."
echo "Updating APT repositories"
sudo apt-get update
# Add write permission to osmc group. We will add other users in this group
chmod -R 775 $HOME_FOLDER
bash "$INSTALLATION_FOLDER/bash/install_transmission.sh" "$IP_RANGE"
bash "$INSTALLATION_FOLDER/bash/install_flexget.sh" "$INSTALLATION_FOLDER" "$SUBTITLES_LANGUAGE" "$CONFIG_RSS_FEED"
bash "$INSTALLATION_FOLDER/bash/install_crontab.sh" "$SUBTITLES_LANGUAGE"
bash "$INSTALLATION_FOLDER/bash/user_profile.sh"
bash "$INSTALLATION_FOLDER/bash/install_additional_packages.sh"
bash "$INSTALLATION_FOLDER/bash/install_motd.sh"
echo "--------------------------------------------------"
echo " Installation complete!"
echo "--------------------------------------------------"
echo "The following services are also available from your network *:"
echo ""
echo "Transmission web client (montitor ongoing downloads)"
echo "- http://$IP:9091 (credentials: transmission / transmission)"
echo ""
echo "Kodi Web (remote control)"
echo "- http://$IP"
echo ""
echo "--------------------------------------------------"
echo ""
echo "You might want to set your Timezone now"
echo "Run: sudo dpkg-reconfigure tzdata"
echo ""
echo "You might also want to move this file away"
echo "Run: mv install.sh /home/osmc/.raspberry-osmc-automated/"