Package: xen-tools
Version: 4.7-1
Severity: normal

Hi,

Looking at /usr/share/xen-tools/stretch.d/30-disable-gettys it seems the
script isn't yet updated to systemd but still considers only upstart.

This yields to:
getty-static.service loaded active exited getty on tty2-tty6 if dbus and logind are not available getty@tty1.service loaded active running Getty on tty1 getty@tty2.service loaded active running Getty on tty2 getty@tty3.service loaded active running Getty on tty3 getty@tty4.service loaded active running Getty on tty4 getty@tty5.service loaded active running Getty on tty5 getty@tty6.service loaded active running Getty on tty6
Probably the script should contain something like:
if [ -d /run/systemd/system ];then
               for i in 1 2 3 4 5 6;do
                       #systemctl stop getty@tty${i}.service
                       systemctl disable getty@tty${i}.service||true
               done
               #systemctl stop getty-static.service
               systemctl disable getty-static.service||true
fi

Thanks!
Kilian

Reply via email to