OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
988
/
etc
/
init.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
apparmor
3.65 KB
07/14/2024 10:22:07 PM
rwxr-xr-x
📄
cryptdisks
937 bytes
06/05/2024 01:46:49 PM
rwxr-xr-x
📄
cryptdisks-early
896 bytes
06/05/2024 01:46:49 PM
rwxr-xr-x
📄
dbus
3.08 KB
12/05/2023 03:36:45 PM
rwxr-xr-x
📄
kmod
2 KB
04/18/2024 10:06:53 AM
rwxr-xr-x
📄
plymouth
1.35 KB
03/21/2024 01:42:02 PM
rwxr-xr-x
📄
plymouth-log
760 bytes
03/21/2024 01:42:02 PM
rwxr-xr-x
📄
procps
959 bytes
03/24/2024 03:35:54 PM
rwxr-xr-x
📄
ssh
3.96 KB
07/30/2024 04:12:40 PM
rwxr-xr-x
Editing: procps
Close
#! /bin/sh # kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing. if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script fi ### BEGIN INIT INFO # Provides: procps # Required-Start: mountkernfs $local_fs # Required-Stop: # Should-Start: udev module-init-tools # X-Start-Before: $network # Default-Start: S # Default-Stop: # Short-Description: Configure kernel parameters at boottime # Description: Loads kernel parameters that are specified in /etc/sysctl.conf ### END INIT INFO # # written by Elrond <Elrond@Wunder-Nett.org> DESC="Setting kernel variables" DAEMON=/sbin/sysctl PIDFILE=none # Comment this out for sysctl to print every item changed QUIET_SYSCTL="-q" do_start_cmd() { STATUS=0 $DAEMON $QUIET_SYSCTL --system || STATUS=$? return $STATUS } do_reload() { call do_start_cmd; } do_stop() { return 0; } do_status() { return 0; }