소스 검색

Fixing icecast daemons

Bob Mottram 7 년 전
부모
커밋
f9ea6d11cf
1개의 변경된 파일53개의 추가작업 그리고 25개의 파일을 삭제
  1. 53
    25
      src/freedombone-app-icecast

+ 53
- 25
src/freedombone-app-icecast 파일 보기

@@ -10,6 +10,10 @@
10 10
 #
11 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 17
 # License
14 18
 # =======
15 19
 #
@@ -55,6 +59,22 @@ function icecast_update_daemon {
55 59
         rm /etc/init.d/icecast2
56 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 78
     echo '[Unit]' > /etc/systemd/system/icecast2.service
59 79
     echo 'Description=Icecast' >> /etc/systemd/system/icecast2.service
60 80
     echo 'After=network.target' >> /etc/systemd/system/icecast2.service
@@ -63,46 +83,37 @@ function icecast_update_daemon {
63 83
     echo '[Service]' >> /etc/systemd/system/icecast2.service
64 84
     echo 'User=icecast2' >> /etc/systemd/system/icecast2.service
65 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 87
     echo 'Restart=on-failure' >> /etc/systemd/system/icecast2.service
68 88
     echo 'RestartSec=10' >> /etc/systemd/system/icecast2.service
69 89
     echo '' >> /etc/systemd/system/icecast2.service
70 90
     echo '[Install]' >> /etc/systemd/system/icecast2.service
71 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 95
     systemctl daemon-reload
89 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 103
 function change_password_icecast {
96 104
     curr_username="$1"
97 105
     new_user_password="$2"
98 106
 
107
+    stop_icecast
108
+
99 109
     sed -i  -e "s|<source-password>[^<]*</source-password>|<source-password>$new_user_password</source-password>|" \
100 110
         -e "s|<relay-password>[^<]*</relay-password>|<relay-password>$new_user_password</relay-password>|" \
101 111
         -e "s|<admin-password>[^<]*</admin-password>|<admin-password>$new_user_password</admin-password>|" \
102 112
         /etc/icecast2/icecast.xml
113
+    sed -i "s|<password>.*|<password>${new_user_password}</password>|g" /etc/ices2/ices-playlist.xml
103 114
 
104 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 119
 function logging_on_icecast {
@@ -153,8 +164,8 @@ function icecast_add_file_to_playlist {
153 164
     done
154 165
 
155 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 171
 function icecast_import_from_directory {
@@ -265,7 +276,8 @@ function icecast_format_drive {
265 276
 
266 277
 function icecast_edit_playlist {
267 278
     editor $ICECAST_PLAYLIST_FILE
268
-    systemctl restart icecast2
279
+    stop_icecast
280
+    start_icecast
269 281
 }
270 282
 
271 283
 function icecast_change_login {
@@ -432,6 +444,13 @@ function restore_remote_icecast {
432 444
 function remove_icecast {
433 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 454
     if [ -f /etc/nginx/sites-available/icecast ]; then
436 455
         rm /etc/nginx/sites-available/icecast
437 456
     fi
@@ -441,6 +460,14 @@ function remove_icecast {
441 460
     fi
442 461
 
443 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 473
 function install_icecast {
@@ -475,6 +502,7 @@ function install_icecast {
475 502
     sed -i "s|<admin-user>.*|<admin-user>$MY_USERNAME</admin-user>|g" /etc/icecast2/icecast.xml
476 503
     sed -i "s|<admin>.*|<admin>$MY_EMAIL_ADDRESS</admin>|g" /etc/icecast2/icecast.xml
477 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 507
     if [ ! -d /var/www/icecast/htdocs ]; then
480 508
         mkdir -p /var/www/icecast/htdocs
@@ -539,7 +567,7 @@ function install_icecast {
539 567
     echo '        <input>' >> /etc/ices2/ices-playlist.xml
540 568
     echo '            <module>playlist</module>' >> /etc/ices2/ices-playlist.xml
541 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 571
     echo '            <!-- random play -->' >> /etc/ices2/ices-playlist.xml
544 572
     echo '            <param name="random">0</param>' >> /etc/ices2/ices-playlist.xml
545 573
     echo '            <!-- if the playlist get updated that start at the beginning -->' >> /etc/ices2/ices-playlist.xml
@@ -633,7 +661,7 @@ function install_icecast {
633 661
     icecast_update_daemon
634 662
     nginx_ensite icecast
635 663
     systemctl restart nginx
636
-    systemctl restart icecast2
664
+    start_icecast
637 665
 
638 666
     APP_INSTALLED=1
639 667
 }