OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
etc
/
init
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
apparmor.conf
3.62 KB
03/03/2017 10:52:31 PM
rw-r--r--
📄
cgmanager.conf
1.27 KB
09/14/2015 10:15:39 PM
rw-r--r--
📄
cgproxy.conf
956 bytes
09/14/2015 10:15:39 PM
rw-r--r--
📄
cloud-config.conf
236 bytes
03/19/2021 02:37:22 PM
rw-r--r--
📄
cloud-final.conf
297 bytes
03/19/2021 02:37:22 PM
rw-r--r--
📄
cloud-init-blocknet.conf
2.5 KB
03/19/2021 02:37:22 PM
rw-r--r--
📄
cloud-init-container.conf
1.98 KB
03/19/2021 02:37:22 PM
rw-r--r--
📄
cloud-init-local.conf
379 bytes
03/19/2021 02:37:22 PM
rw-r--r--
📄
cloud-init-nonet.conf
1.86 KB
03/19/2021 02:37:22 PM
rw-r--r--
📄
cloud-init.conf
202 bytes
03/19/2021 02:37:22 PM
rw-r--r--
📄
cloud-log-shutdown.conf
562 bytes
03/19/2021 02:37:22 PM
rw-r--r--
📄
console-font.conf
250 bytes
04/04/2016 05:41:49 PM
rw-r--r--
📄
console-setup.conf
509 bytes
04/04/2016 05:41:49 PM
rw-r--r--
📄
cron.conf
297 bytes
05/10/2022 10:15:22 PM
rw-r--r--
📄
dbus.conf
482 bytes
10/07/2019 11:29:04 AM
rw-r--r--
📄
hostname.conf
284 bytes
07/23/2013 09:25:08 AM
rw-r--r--
📄
hostname.sh.conf
300 bytes
05/21/2014 02:59:34 PM
rw-r--r--
📄
hwclock-save.conf
561 bytes
03/14/2016 09:08:14 AM
rw-r--r--
📄
hwclock.conf
674 bytes
03/14/2016 09:08:14 AM
rw-r--r--
📄
hwclock.sh.conf
109 bytes
03/14/2016 09:08:14 AM
rw-r--r--
📄
kmod.conf
689 bytes
11/12/2018 09:55:37 PM
rw-r--r--
📄
network-interface-container.conf
530 bytes
11/30/2016 05:15:30 PM
rw-r--r--
📄
network-interface-security.conf
1.71 KB
11/30/2016 05:15:30 PM
rw-r--r--
📄
network-interface.conf
933 bytes
11/30/2016 05:15:30 PM
rw-r--r--
📄
networking.conf
2.43 KB
11/30/2016 05:15:30 PM
rw-r--r--
📄
passwd.conf
568 bytes
02/01/2016 08:35:21 PM
rw-r--r--
📄
procps-instance.conf
363 bytes
06/05/2014 02:27:47 PM
rw-r--r--
📄
procps.conf
119 bytes
06/05/2014 03:06:47 PM
rw-r--r--
📄
resolvconf.conf
457 bytes
11/29/2017 06:26:46 PM
rw-r--r--
📄
rfkill-restore.conf
365 bytes
11/03/2014 06:54:04 AM
rw-r--r--
📄
rfkill-store.conf
357 bytes
11/03/2014 06:52:29 AM
rw-r--r--
📄
rsyslog.conf
426 bytes
12/02/2015 04:23:58 PM
rw-r--r--
📄
setvtrgb.conf
230 bytes
04/04/2016 05:41:49 PM
rw-r--r--
📄
ssh.conf
641 bytes
05/13/2020 02:12:28 PM
rw-r--r--
📄
ubuntu-fan.conf
239 bytes
10/28/2016 03:24:40 PM
rw-r--r--
📄
udev.conf
337 bytes
04/02/2021 02:39:40 AM
rw-r--r--
📄
udevmonitor.conf
360 bytes
04/02/2021 02:39:40 AM
rw-r--r--
📄
udevtrigger.conf
352 bytes
04/02/2021 02:39:40 AM
rw-r--r--
Editing: networking.conf
Close
# networking - configure virtual network devices # # This task causes virtual network devices that do not have an associated # kernel object to be started on boot. description "configure virtual network devices" emits static-network-up emits net-device-up emits deconfiguring-networking start on (local-filesystems and (stopped udevtrigger or container)) or runlevel [2345] or stopped networking RESULT=failed PROCESS=post-stop EXIT_STATUS=100 stop on unmounted-remote-filesystems pre-start script if [ "$UPSTART_EVENTS" = "stopped" ] && [ "$UPSTART_JOB" = "networking" ] && [ "$EXIT_STATUS" = "100" ]; then exit 0 fi mkdir -p /run/network ifup -a end script post-stop script if [ -z "$UPSTART_STOP_EVENTS" ]; then echo "Stopping or restarting the networking job is not supported." echo "Use ifdown & ifup to reconfigure desired interface." exit 100 fi log_warning_msg() { echo $* } # These checks were taken from the Debian ifupdown.networking.init script check_network_file_systems() { [ -e /proc/mounts ] || return 0 if [ -e /etc/iscsi/iscsi.initramfs ]; then log_warning_msg "not deconfiguring network interfaces: iSCSI root is mounted." exit 0 fi while read DEV MTPT FSTYPE REST; do case $DEV in /dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*) log_warning_msg "not deconfiguring network interfaces: network devices still mounted." exit 0 ;; esac case $FSTYPE in nfs|nfs4|smbfs|ncp|ncpfs|cifs|coda|ocfs2|gfs|pvfs|pvfs2|fuse.httpfs|fuse.curlftpfs) log_warning_msg "not deconfiguring network interfaces: network file systems still mounted." exit 0 ;; esac done < /proc/mounts } check_network_swap() { [ -e /proc/swaps ] || return 0 while read DEV MTPT FSTYPE REST; do case $DEV in /dev/nbd*|/dev/nd[a-z]*|/dev/etherd/e*) log_warning_msg "not deconfiguring network interfaces: network swap still mounted." exit 0 ;; esac done < /proc/swaps } check_network_file_systems check_network_swap # Anything that manages network interfaces *MUST* wait for this event initctl emit deconfiguring-networking ifdown -a --exclude=lo end script