case "$MODE" in
    after-install)
        # Disable services we don't want
        ltsp-chroot -a $ARCH systemctl disable sshd.service
        ltsp-chroot -a $ARCH systemctl disable display-manager.service || :
        ltsp-chroot -a $ARCH systemctl mask display-manager.service
        # Enable services we do want
        ltsp-chroot -a $ARCH /sbin/chkconfig ltsp-core on
        # Graphical mode is started by ltsp, not by systemd
        ltsp-chroot -a $ARCH systemctl set-default multi-user.target
        ;;
esac
