[ Avaa Bypassed ]




Upload:

Command:

www-data@18.191.207.122: ~ $
#!/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 <sysv script name>" >&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

Filemanager

Name Type Size Permission Actions
boot Folder 0755
catalog Folder 0755
logind.conf.d Folder 0755
network Folder 0755
ntp-units.d Folder 0755
system Folder 0755
system-environment-generators Folder 0755
system-generators Folder 0755
system-preset Folder 0755
system-shutdown Folder 0755
system-sleep Folder 0755
user Folder 0755
user-environment-generators Folder 0755
user-generators Folder 0755
user-preset Folder 0755
libsystemd-shared-245.so File 2.35 MB 0644
resolv.conf File 701 B 0644
set-cpufreq File 1.22 KB 0755
systemd File 1.55 MB 0755
systemd-ac-power File 14.22 KB 0755
systemd-backlight File 26.14 KB 0755
systemd-binfmt File 18.22 KB 0755
systemd-bless-boot File 30.32 KB 0755
systemd-boot-check-no-failures File 14.22 KB 0755
systemd-cgroups-agent File 14.14 KB 0755
systemd-cryptsetup File 34.33 KB 0755
systemd-dissect File 22.33 KB 0755
systemd-fsck File 26.15 KB 0755
systemd-fsckd File 30.22 KB 0755
systemd-growfs File 22.22 KB 0755
systemd-hibernate-resume File 14.14 KB 0755
systemd-hostnamed File 34.22 KB 0755
systemd-initctl File 18.22 KB 0755
systemd-journald File 158.23 KB 0755
systemd-localed File 42.22 KB 0755
systemd-logind File 262.28 KB 0755
systemd-makefs File 14.14 KB 0755
systemd-modules-load File 18.32 KB 0755
systemd-network-generator File 34.22 KB 0755
systemd-networkd File 2.14 MB 0755
systemd-networkd-wait-online File 30.35 KB 0755
systemd-pstore File 22.24 KB 0755
systemd-quotacheck File 14.22 KB 0755
systemd-random-seed File 22.14 KB 0755
systemd-remount-fs File 18.22 KB 0755
systemd-reply-password File 14.14 KB 0755
systemd-resolved File 406.22 KB 0755
systemd-rfkill File 22.22 KB 0755
systemd-shutdown File 54.23 KB 0755
systemd-sleep File 26.32 KB 0755
systemd-socket-proxyd File 30.22 KB 0755
systemd-sulogin-shell File 14.14 KB 0755
systemd-sysctl File 22.32 KB 0755
systemd-sysv-install File 1.33 KB 0755
systemd-time-wait-sync File 14.14 KB 0755
systemd-timedated File 46.22 KB 0755
systemd-timesyncd File 54.22 KB 0755
systemd-udevd File 742.57 KB 0755
systemd-update-utmp File 14.22 KB 0755
systemd-user-runtime-dir File 22.14 KB 0755
systemd-user-sessions File 14.14 KB 0755
systemd-veritysetup File 14.27 KB 0755
systemd-volatile-root File 18.14 KB 0755