OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
etc
/
rc2.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
README
677 bytes
02/05/2016 09:48:45 AM
rw-r--r--
📄
S01cgmanager
3.48 KB
09/14/2015 10:15:39 PM
rwxr-xr-x
📄
S01rsyslog
2.73 KB
02/03/2016 10:54:29 AM
rwxr-xr-x
📄
S01ubuntu-fan
1.2 KB
10/28/2016 03:24:40 PM
rwxr-xr-x
📄
S02cgproxy
3.28 KB
09/14/2015 10:15:39 PM
rwxr-xr-x
📄
S02cron
2.98 KB
05/10/2022 10:15:22 PM
rwxr-xr-x
📄
S02dbus
2.75 KB
10/07/2019 11:29:04 AM
rwxr-xr-x
📄
S02ssh
3.98 KB
05/13/2020 02:12:28 PM
rwxr-xr-x
📄
S03grub-common
0 bytes
01/01/1970 12:00:00 AM
---------
📄
S03ondemand
1.54 KB
10/16/2015 02:45:22 AM
rwxr-xr-x
📄
S03rc.local
820 bytes
01/19/2016 06:33:51 PM
rwxr-xr-x
Editing: S03rc.local
Close
#! /bin/sh ### BEGIN INIT INFO # Provides: rc.local # Required-Start: $all # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: # Short-Description: Run /etc/rc.local if it exist ### END INIT INFO PATH=/sbin:/usr/sbin:/bin:/usr/bin . /lib/init/vars.sh . /lib/lsb/init-functions do_start() { if [ -x /etc/rc.local ]; then [ "$VERBOSE" != no ] && log_begin_msg "Running local boot scripts (/etc/rc.local)" /etc/rc.local ES=$? [ "$VERBOSE" != no ] && log_end_msg $ES return $ES fi } case "$1" in start) do_start ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop|status) # No-op exit 0 ;; *) echo "Usage: $0 start|stop" >&2 exit 3 ;; esac