For now, just prompt users to start background services at the end of the install process

This commit is contained in:
Duncan Sommerville 2015-01-12 10:53:31 -05:00
parent bf1355a203
commit 0fcac545e6
8 changed files with 12 additions and 21 deletions

View file

@ -322,7 +322,6 @@ verbose "...Done"
verbose "\n * Creating /usr/lib/airtime..."
mkdir -p /usr/lib/airtime
mkdir -p /var/www/.init
verbose "...Done"
verbose "\n * Creating /run/airtime..."
@ -373,8 +372,9 @@ verbose "\n * Creating liquidsoap symlink..."
ln -sf /usr/bin/liquidsoap /usr/bin/airtime-liquidsoap
verbose "...Done"
for i in /var/www/.init/airtime*; do
sed -i 's/WEB_USER/${web_user}/g' $i
for i in /etc/init/airtime*; do
chmod 644 $i
sed -i "s/WEB_USER/${web_user}/g" $i
done
initctl reload-configuration