/usr/lib/systemd
NameSizeModeActions
catalog/-0755rm
journald.conf.d/-0755rm
logind.conf.d/-0755rm
network/-0755rm
ntp-units.d/-0755rm
repart/-0755rm
scripts/-0755rm
sleep.conf.d/-0755rm
system/-0755rm
system-environment-generators/-0755rm
system-generators/-0755rm
system-preset/-0755rm
system-shutdown/-0755rm
system-sleep/-0755rm
user/-0755rm
user-environment-generators/-0755rm
user-generators/-0755rm
user-preset/-0755rm
lxd-agent-setup12890755editdlrm
resolv.conf7100644editdlrm
systemd1008160755editdlrm
systemd-backlight352720755editdlrm
systemd-battery-check188880755editdlrm
systemd-binfmt229840755editdlrm
systemd-boot-check-no-failures147920755editdlrm
systemd-bsod229840755editdlrm
systemd-cgroups-agent147120755editdlrm
systemd-cryptsetup808400755editdlrm
systemd-executor1377920755editdlrm
systemd-fsck270080755editdlrm
systemd-fsckd270800755editdlrm
systemd-growfs229840755editdlrm
systemd-hibernate-resume231040755editdlrm
systemd-hostnamed475840755editdlrm
systemd-initctl229840755editdlrm
systemd-integritysetup230560755editdlrm
systemd-journald1936640755editdlrm
systemd-localed557760755editdlrm
systemd-logind2852640755editdlrm
systemd-makefs147120755editdlrm
systemd-measure478800755editdlrm
systemd-modules-load190080755editdlrm
systemd-network-generator434640755editdlrm
systemd-networkd16698640755editdlrm
systemd-networkd-wait-online395360755editdlrm
systemd-pcrextend272720755editdlrm
systemd-pcrlock1379280755editdlrm
systemd-pstore230080755editdlrm
systemd-quotacheck147920755editdlrm
systemd-random-seed270800755editdlrm
systemd-remount-fs188880755editdlrm
systemd-reply-password147120755editdlrm
systemd-resolved5391440755editdlrm
systemd-rfkill229840755editdlrm
systemd-shutdown557600755editdlrm
systemd-sleep475600755editdlrm
systemd-socket-proxyd311840755editdlrm
systemd-storagetm518080755editdlrm
systemd-sulogin-shell188080755editdlrm
systemd-sysctl231040755editdlrm
systemd-sysroot-fstab-check560720755editdlrm
systemd-sysupdate1175920755editdlrm
systemd-sysv-install13600755editdlrm
systemd-time-wait-sync188080755editdlrm
systemd-timedated434880755editdlrm
systemd-tpm2-setup272000755editdlrm
systemd-udevd14436320755editdlrm
systemd-update-done147120755editdlrm
systemd-update-utmp229840755editdlrm
systemd-user-runtime-dir229040755editdlrm
systemd-user-sessions147120755editdlrm
systemd-veritysetup273040755editdlrm
systemd-volatile-root229040755editdlrm
systemd-xdg-autostart-condition147120755editdlrm
Edit: /usr/lib/systemd/systemd-sysv-install (1360B)
#!/bin/sh # This script is called by "systemctl enable/disable" when the given unit is a # SysV init.d script. It needs to call the distribution's mechanism for # enabling/disabling those, such as chkconfig, update-rc.d, or similar. This # can optionally take a --root argument for enabling a SysV init script # in a chroot or similar. set -eu usage() { echo "Usage: $0 [--root=path] enable|disable|is-enabled " >&2 exit 1 } ROOT= # parse options eval set -- "$(getopt -o r: --long root: -- "$@")" while true; do case "$1" in -r|--root) ROOT="$2" shift 2 ;; --) shift ; break ;; *) usage ;; esac done NAME="${2:-}" run() { if [ -n "$ROOT" ] && [ "$ROOT" != "/" ]; then _SKIP_SYSTEMD_NATIVE=1 chroot "$ROOT" /usr/sbin/update-rc.d "$@" else _SKIP_SYSTEMD_NATIVE=1 /usr/sbin/update-rc.d "$@" fi } [ -n "$NAME" ] || usage case "$1" in enable) # call the command to enable SysV init script $NAME here.. run "$NAME" defaults run "$NAME" enable ;; disable) run "$NAME" defaults run "$NAME" disable ;; is-enabled) # exit with 0 if $NAME is enabled, non-zero if it is disabled ls "$ROOT"/etc/rc[S5].d/S??"$NAME" >/dev/null 2>&1 ;; *) usage ;; esac