OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
etc
/
init.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
apparmor
3.65 KB
10/10/2023 12:20:12 PM
rwxr-xr-x
📄
cryptdisks
937 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📄
cryptdisks-early
896 bytes
02/04/2020 01:11:12 PM
rwxr-xr-x
📄
dbus
3.08 KB
09/30/2019 07:47:02 AM
rwxr-xr-x
📄
hwclock.sh
3.72 KB
07/28/2019 09:44:43 PM
rwxr-xr-x
📄
kmod
2 KB
02/19/2020 09:12:20 AM
rwxr-xr-x
📄
procps
924 bytes
02/13/2020 10:44:31 PM
rwxr-xr-x
📄
ssh
3.85 KB
04/03/2023 10:47:13 PM
rwxr-xr-x
📄
udev
6.71 KB
06/17/2024 08:29:39 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_stop() { return 0; } do_status() { return 0; }