Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
systemd /
system-generators /
[ HOME SHELL ]
Name
Size
Permission
Action
friendly-recovery
286
B
-rwxr-xr-x
netplan
22.51
KB
-rwxr-xr-x
openvpn-generator
899
B
-rwxr-xr-x
snapd-generator
26.15
KB
-rwxr-xr-x
systemd-bless-boot-generator
14.3
KB
-rwxr-xr-x
systemd-cryptsetup-generator
34.51
KB
-rwxr-xr-x
systemd-debug-generator
14.44
KB
-rwxr-xr-x
systemd-fstab-generator
38.5
KB
-rwxr-xr-x
systemd-getty-generator
18.29
KB
-rwxr-xr-x
systemd-gpt-auto-generator
34.3
KB
-rwxr-xr-x
systemd-hibernate-resume-generator
14.43
KB
-rwxr-xr-x
systemd-rc-local-generator
14.29
KB
-rwxr-xr-x
systemd-run-generator
14.42
KB
-rwxr-xr-x
systemd-system-update-generator
14.29
KB
-rwxr-xr-x
systemd-sysv-generator
34.37
KB
-rwxr-xr-x
systemd-veritysetup-generator
30.45
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : openvpn-generator
#!/bin/sh # This systemd generator creates dependency symlinks that make all OpenVPN # tunnels listed in /etc/default/openvpn's AUTOSTART be started/stopped/reloaded # when openvpn.service is started/stopped/reloaded. set -eu GENDIR="$1" WANTDIR="$1/openvpn.service.wants" SERVICEFILE="/lib/systemd/system/openvpn@.service" AUTOSTART="all" CONFIG_DIR=/etc/openvpn mkdir -p "$WANTDIR" if test -e /etc/default/openvpn ; then . /etc/default/openvpn fi # No VPNs automatically started if test "x$AUTOSTART" = "xnone" ; then exit 0 fi if test "x$AUTOSTART" = "xall" -o -z "$AUTOSTART" ; then for CONFIG in `cd $CONFIG_DIR; ls *.conf 2> /dev/null`; do NAME=${CONFIG%%.conf} ln -s "$SERVICEFILE" "$WANTDIR/openvpn@$NAME.service" done else for NAME in $AUTOSTART ; do if test -e $CONFIG_DIR/$NAME.conf ; then ln -s "$SERVICEFILE" "$WANTDIR/openvpn@$NAME.service" fi done fi exit 0
Close