Browse Source

Fixing icecast daemons

Bob Mottram 7 years ago
parent
commit
f9ea6d11cf
1 changed files with 53 additions and 25 deletions
  1. 53
    25
      src/freedombone-app-icecast

+ 53
- 25
src/freedombone-app-icecast View File

10
 #
10
 #
11
 # Icecast application
11
 # Icecast application
12
 #
12
 #
13
+# Notes: An attempt was made to get ices2 running with systemd, but that
14
+#        was very unsuccessful. Instead there's a hacky cron entry which
15
+#        starts icecast2 and ices2 if necessary
16
+#
13
 # License
17
 # License
14
 # =======
18
 # =======
15
 #
19
 #
55
         rm /etc/init.d/icecast2
59
         rm /etc/init.d/icecast2
56
     fi
60
     fi
57
 
61
 
62
+    echo '#!/bin/sh' > /usr/bin/stop_icecast
63
+    echo 'kill $(pidof ices2)' >> /usr/bin/stop_icecast
64
+    echo 'systemctl stop icecast2' >> /usr/bin/stop_icecast
65
+    chmod +x /usr/bin/stop_icecast
66
+
67
+    # Note that the sleep here actually is important
68
+    echo '#!/bin/bash' > /usr/bin/start_icecast
69
+    echo 'isrunning=$(ps aux | grep ices2)' >> /usr/bin/start_icecast
70
+    echo 'if [[ "$isrunning" != *"ices-playlist"* ]]; then' >> /usr/bin/start_icecast
71
+    echo '    systemctl start icecast2' >> /usr/bin/start_icecast
72
+    echo '    sleep 3' >> /usr/bin/start_icecast
73
+    echo '    cd /etc/ices2' >> /usr/bin/start_icecast
74
+    echo '    ices2 ices-playlist.xml' >> /usr/bin/start_icecast
75
+    echo 'fi' >> /usr/bin/start_icecast
76
+    chmod +x /usr/bin/start_icecast
77
+
58
     echo '[Unit]' > /etc/systemd/system/icecast2.service
78
     echo '[Unit]' > /etc/systemd/system/icecast2.service
59
     echo 'Description=Icecast' >> /etc/systemd/system/icecast2.service
79
     echo 'Description=Icecast' >> /etc/systemd/system/icecast2.service
60
     echo 'After=network.target' >> /etc/systemd/system/icecast2.service
80
     echo 'After=network.target' >> /etc/systemd/system/icecast2.service
63
     echo '[Service]' >> /etc/systemd/system/icecast2.service
83
     echo '[Service]' >> /etc/systemd/system/icecast2.service
64
     echo 'User=icecast2' >> /etc/systemd/system/icecast2.service
84
     echo 'User=icecast2' >> /etc/systemd/system/icecast2.service
65
     echo 'Group=icecast' >> /etc/systemd/system/icecast2.service
85
     echo 'Group=icecast' >> /etc/systemd/system/icecast2.service
66
-    echo "ExecStart=/usr/bin/icecast2 -c /etc/icecast2/icecast.xml" >> /etc/systemd/system/icecast2.service
86
+    echo 'ExecStart=/usr/bin/icecast2 -c /etc/icecast2/icecast.xml' >> /etc/systemd/system/icecast2.service
67
     echo 'Restart=on-failure' >> /etc/systemd/system/icecast2.service
87
     echo 'Restart=on-failure' >> /etc/systemd/system/icecast2.service
68
     echo 'RestartSec=10' >> /etc/systemd/system/icecast2.service
88
     echo 'RestartSec=10' >> /etc/systemd/system/icecast2.service
69
     echo '' >> /etc/systemd/system/icecast2.service
89
     echo '' >> /etc/systemd/system/icecast2.service
70
     echo '[Install]' >> /etc/systemd/system/icecast2.service
90
     echo '[Install]' >> /etc/systemd/system/icecast2.service
71
     echo 'WantedBy=multi-user.target' >> /etc/systemd/system/icecast2.service
91
     echo 'WantedBy=multi-user.target' >> /etc/systemd/system/icecast2.service
72
 
92
 
73
-    echo '[Unit]' > /etc/systemd/system/ices2.service
74
-    echo 'Description=Icecast' >> /etc/systemd/system/ices2.service
75
-    echo 'After=network.target' >> /etc/systemd/system/ices2.service
76
-    echo 'After=tor.service' >> /etc/systemd/system/ices2.service
77
-    echo 'After=icecast2.service' >> /etc/systemd/system/ices2.service
78
-    echo '' >> /etc/systemd/system/ices2.service
79
-    echo '[Service]' >> /etc/systemd/system/ices2.service
80
-    echo 'Type=oneshot' >> /etc/systemd/system/ices2.service
81
-    echo 'User=icecast2' >> /etc/systemd/system/ices2.service
82
-    echo 'Group=icecast' >> /etc/systemd/system/ices2.service
83
-    echo "ExecStart=/usr/bin/ices2 /etc/ices2/ices-playlist.xml" >> /etc/systemd/system/ices2.service
84
-    echo '' >> /etc/systemd/system/ices2.service
85
-    echo '[Install]' >> /etc/systemd/system/ices2.service
86
-    echo 'WantedBy=multi-user.target' >> /etc/systemd/system/ices2.service
87
-
93
+    chown -R icecast2:icecast /etc/ices2
94
+    chown -R icecast2:icecast /etc/icecast2
88
     systemctl daemon-reload
95
     systemctl daemon-reload
89
     systemctl enable icecast2
96
     systemctl enable icecast2
90
-    systemctl enable ices2
91
-    systemctl restart icecast2
92
-    systemctl restart ices2
97
+
98
+    if ! grep -q "start_icecast" /etc/crontab; then
99
+        echo '*/1            * *   *   *   root /usr/bin/start_icecast > /dev/null' >> /etc/crontab
100
+    fi
93
 }
101
 }
94
 
102
 
95
 function change_password_icecast {
103
 function change_password_icecast {
96
     curr_username="$1"
104
     curr_username="$1"
97
     new_user_password="$2"
105
     new_user_password="$2"
98
 
106
 
107
+    stop_icecast
108
+
99
     sed -i  -e "s|<source-password>[^<]*</source-password>|<source-password>$new_user_password</source-password>|" \
109
     sed -i  -e "s|<source-password>[^<]*</source-password>|<source-password>$new_user_password</source-password>|" \
100
         -e "s|<relay-password>[^<]*</relay-password>|<relay-password>$new_user_password</relay-password>|" \
110
         -e "s|<relay-password>[^<]*</relay-password>|<relay-password>$new_user_password</relay-password>|" \
101
         -e "s|<admin-password>[^<]*</admin-password>|<admin-password>$new_user_password</admin-password>|" \
111
         -e "s|<admin-password>[^<]*</admin-password>|<admin-password>$new_user_password</admin-password>|" \
102
         /etc/icecast2/icecast.xml
112
         /etc/icecast2/icecast.xml
113
+    sed -i "s|<password>.*|<password>${new_user_password}</password>|g" /etc/ices2/ices-playlist.xml
103
 
114
 
104
     ${PROJECT_NAME}-pass -u "$curr_username" -a icecast -p "$new_user_password"
115
     ${PROJECT_NAME}-pass -u "$curr_username" -a icecast -p "$new_user_password"
105
-    systemctl restart icecast2
116
+    start_icecast
106
 }
117
 }
107
 
118
 
108
 function logging_on_icecast {
119
 function logging_on_icecast {
153
     done
164
     done
154
 
165
 
155
     chown icecast2:icecast $ICECAST_PLAYLIST_FILE
166
     chown icecast2:icecast $ICECAST_PLAYLIST_FILE
156
-    systemctl restart icecast2
157
-    systemctl restart ices2
167
+    stop_icecast
168
+    start_icecast
158
 }
169
 }
159
 
170
 
160
 function icecast_import_from_directory {
171
 function icecast_import_from_directory {
265
 
276
 
266
 function icecast_edit_playlist {
277
 function icecast_edit_playlist {
267
     editor $ICECAST_PLAYLIST_FILE
278
     editor $ICECAST_PLAYLIST_FILE
268
-    systemctl restart icecast2
279
+    stop_icecast
280
+    start_icecast
269
 }
281
 }
270
 
282
 
271
 function icecast_change_login {
283
 function icecast_change_login {
432
 function remove_icecast {
444
 function remove_icecast {
433
     nginx_dissite icecast
445
     nginx_dissite icecast
434
 
446
 
447
+    sed -i '/start_icecast/d' /etc/crontab
448
+    stop_icecast
449
+    systemctl disable icecast2
450
+    rm /etc/systemd/system/icecast2.service
451
+    rm /usr/bin/start_icecast
452
+    rm /usr/bin/stop_icecast
453
+
435
     if [ -f /etc/nginx/sites-available/icecast ]; then
454
     if [ -f /etc/nginx/sites-available/icecast ]; then
436
         rm /etc/nginx/sites-available/icecast
455
         rm /etc/nginx/sites-available/icecast
437
     fi
456
     fi
441
     fi
460
     fi
442
 
461
 
443
     apt-get -yq remove --purge icecast2
462
     apt-get -yq remove --purge icecast2
463
+
464
+    if [ -d /etc/icecast2 ]; then
465
+        rm -rf /etc/icecast2
466
+    fi
467
+    if [ -d /etc/ices2 ]; then
468
+        rm -rf /etc/ices2
469
+    fi
470
+    sed -i '/icecast/d' $COMPLETION_FILE
444
 }
471
 }
445
 
472
 
446
 function install_icecast {
473
 function install_icecast {
475
     sed -i "s|<admin-user>.*|<admin-user>$MY_USERNAME</admin-user>|g" /etc/icecast2/icecast.xml
502
     sed -i "s|<admin-user>.*|<admin-user>$MY_USERNAME</admin-user>|g" /etc/icecast2/icecast.xml
476
     sed -i "s|<admin>.*|<admin>$MY_EMAIL_ADDRESS</admin>|g" /etc/icecast2/icecast.xml
503
     sed -i "s|<admin>.*|<admin>$MY_EMAIL_ADDRESS</admin>|g" /etc/icecast2/icecast.xml
477
     sed -i "s|<location>.*|<location>The Interwebs</location>|g" /etc/icecast2/icecast.xml
504
     sed -i "s|<location>.*|<location>The Interwebs</location>|g" /etc/icecast2/icecast.xml
505
+    #sed -i 's|<!-- <bind-address>.*|<bind-address>127.0.0.1</bind-address>|g' /etc/icecast2/icecast.xml
478
 
506
 
479
     if [ ! -d /var/www/icecast/htdocs ]; then
507
     if [ ! -d /var/www/icecast/htdocs ]; then
480
         mkdir -p /var/www/icecast/htdocs
508
         mkdir -p /var/www/icecast/htdocs
539
     echo '        <input>' >> /etc/ices2/ices-playlist.xml
567
     echo '        <input>' >> /etc/ices2/ices-playlist.xml
540
     echo '            <module>playlist</module>' >> /etc/ices2/ices-playlist.xml
568
     echo '            <module>playlist</module>' >> /etc/ices2/ices-playlist.xml
541
     echo '            <param name="type">basic</param>' >> /etc/ices2/ices-playlist.xml
569
     echo '            <param name="type">basic</param>' >> /etc/ices2/ices-playlist.xml
542
-    echo '            <param name="file">playlist.txt</param>' >> /etc/ices2/ices-playlist.xml
570
+    echo "            <param name=\"file\">$ICECAST_PLAYLIST_FILE</param>" >> /etc/ices2/ices-playlist.xml
543
     echo '            <!-- random play -->' >> /etc/ices2/ices-playlist.xml
571
     echo '            <!-- random play -->' >> /etc/ices2/ices-playlist.xml
544
     echo '            <param name="random">0</param>' >> /etc/ices2/ices-playlist.xml
572
     echo '            <param name="random">0</param>' >> /etc/ices2/ices-playlist.xml
545
     echo '            <!-- if the playlist get updated that start at the beginning -->' >> /etc/ices2/ices-playlist.xml
573
     echo '            <!-- if the playlist get updated that start at the beginning -->' >> /etc/ices2/ices-playlist.xml
633
     icecast_update_daemon
661
     icecast_update_daemon
634
     nginx_ensite icecast
662
     nginx_ensite icecast
635
     systemctl restart nginx
663
     systemctl restart nginx
636
-    systemctl restart icecast2
664
+    start_icecast
637
 
665
 
638
     APP_INSTALLED=1
666
     APP_INSTALLED=1
639
 }
667
 }