diff options
| -rwxr-xr-x | debian/vyatta-cfg-system.postinst.in | 2 | ||||
| -rwxr-xr-x | scripts/system/vyatta_update_console.pl | 3 | ||||
| -rw-r--r-- | templates/system/options/ctrl-alt-del-action/node.def | 16 | ||||
| -rw-r--r-- | templates/system/options/enable-popularity-contest/node.def | 9 | 
4 files changed, 10 insertions, 20 deletions
| diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 8888aa60..60ed8eeb 100755 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -188,7 +188,7 @@ if [ -e /etc/default/mdadm ]; then  fi  # Disable reboot on ctrl-alt-delete -sed -i -e '/^ca/s/\/sbin\/shutdown .*$/\/bin\/echo "Ctrl\-Alt\-Del disabled."/' /etc/inittab +ln -sf /dev/null /lib/systemd/system/ctrl-alt-del.target  # remove unnecessary ddclient script in /etc/ppp/ip-up.d/  # this logs unnecessary messages trying to start ddclient diff --git a/scripts/system/vyatta_update_console.pl b/scripts/system/vyatta_update_console.pl index 93f6a232..19937060 100755 --- a/scripts/system/vyatta_update_console.pl +++ b/scripts/system/vyatta_update_console.pl @@ -16,8 +16,7 @@  #  # **** End License **** -# Update console configuration in /etc/inittab and grub -# based on Vyatta configuration +# Update console configuration in systemd and grub based on Vyatta configuration  use strict;  use warnings; diff --git a/templates/system/options/ctrl-alt-del-action/node.def b/templates/system/options/ctrl-alt-del-action/node.def index 3bbf2a81..a853b151 100644 --- a/templates/system/options/ctrl-alt-del-action/node.def +++ b/templates/system/options/ctrl-alt-del-action/node.def @@ -12,15 +12,15 @@ syntax:expression: $VAR(@) in "ignore", "reboot", "poweroff"; "Value must be ign  end:    if [ $VAR(@) == "ignore" ]; then -    sudo sh -c "sed -i -e 's/^ca.*/ca:12345:ctrlaltdel:/' \ -      /etc/inittab" +    sudo sh -c "ln -sf /dev/null \ +      /lib/systemd/system/ctrl-alt-del.target"    elif [ $VAR(@) == "reboot" ]; then -    sudo sh -c "sed -i -e 's/^ca.*/ca:12345:ctrlaltdel:\/sbin\/reboot/' \ -      /etc/inittab" +    sudo sh -c "ln -sf /lib/systemd/system/reboot.target \ +      /lib/systemd/system/ctrl-alt-del.target"    elif [ $VAR(@) == "poweroff" ]; then -    sudo sh -c "sed -i -e 's/^ca.*/ca:12345:ctrlaltdel:\/sbin\/shutdown -h now/' \ -      /etc/inittab" +    sudo sh -c "ln -sf /lib/systemd/system/poweroff.target \ +      /lib/systemd/system/ctrl-alt-del.target"    fi -  # Reload /etc/inittab for change to take effect -  sudo /sbin/init q +  # Reload systemd daemon for change to take effect +  sudo /bin/systemctl daemon-reload diff --git a/templates/system/options/enable-popularity-contest/node.def b/templates/system/options/enable-popularity-contest/node.def deleted file mode 100644 index 3f048352..00000000 --- a/templates/system/options/enable-popularity-contest/node.def +++ /dev/null @@ -1,9 +0,0 @@ -help: Send anonymous system statistic to VyOS maintainers - -create: -  sudo sh -c 'echo "#!/bin/sh" > /etc/cron.weekly/01vyos-popcon' -  sudo sh -c 'echo "/opt/vyatta/bin/vyos-popcon.pl 2>&1 >/var/log/popcon.log" >> /etc/cron.weekly/01vyos-popcon' -  sudo sh -c 'chmod +x /etc/cron.weekly/01vyos-popcon' - -delete: -  sudo rm -f /etc/cron.weekly/01vyos-popcon | 
