systemd or init

This commit is contained in:
Bob Mottram 2015-08-09 22:56:14 +01:00
parent fcd1799e94
commit 820a66a06c
2 changed files with 11 additions and 3 deletions

View File

@ -1702,7 +1702,7 @@ function configure_avahi {
# this is a blatant hack, but I couldn't find a better way of mitigating the problem
# of avahi-daemon stopping after a few minutes
if ! grep -q "avahi-daemon" /etc/crontab; then
echo '2 * * * * root systemctl restart avahi-daemon' >> /etc/crontab
echo '2 * * * * root systemctl restart avahi-daemon > /dev/null' >> /etc/crontab
fi
echo 'configure_avahi' >> $COMPLETION_FILE

View File

@ -119,7 +119,11 @@ function mesh_babel {
echo ' sed -i "s|#host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf' >> $babel_script
echo ' sed -i "s|host-name=.*|host-name=$(hostname)|g" /etc/avahi/avahi-daemon.conf' >> $babel_script
echo ' if ! grep -q "avahi-daemon" /etc/crontab; then' >> $babel_script
echo " echo '2 * * * * root systemctl restart avahi-daemon' >> /etc/crontab" >> $babel_script
echo ' if [ -f /bin/systemctl ]; then' >> $babel_script
echo " echo '2 * * * * root systemctl restart avahi-daemon > /dev/null' >> /etc/crontab" >> $babel_script
echo ' else' >> $babel_script
echo " echo '2 * * * * root service avahi-daemon restart > /dev/null' >> /etc/crontab" >> $babel_script
echo ' fi' >> $babel_script
echo ' fi' >> $babel_script
echo ' if [ -f /bin/systemctl ]; then' >> $babel_script
echo ' systemctl restart avahi-daemon' >> $babel_script
@ -199,7 +203,11 @@ function mesh_batman {
echo ' sed -i "s|use-ipv6=.*|use-ipv6=no|g" /etc/avahi/avahi-daemon.conf' >> $batman_script
echo ' sed -i "s|hosts:.*|hosts: files mdns4_minimal dns mdns4 mdns|g" /etc/nsswitch.conf' >> $batman_script
echo ' if ! grep -q "avahi-daemon" /etc/crontab; then' >> $batman_script
echo " echo '2 * * * * root systemctl restart avahi-daemon' >> /etc/crontab" >> $batman_script
echo ' if [ -f /bin/systemctl ]; then' >> $batman_script
echo " echo '2 * * * * root systemctl restart avahi-daemon > /dev/null' >> /etc/crontab" >> $batman_script
echo ' else' >> $batman_script
echo " echo '2 * * * * root service avahi-daemon restart > /dev/null' >> /etc/crontab" >> $batman_script
echo ' fi' >> $batman_script
echo ' fi' >> $batman_script
echo 'fi' >> $batman_script
echo '' >> $batman_script