initial commit
This commit is contained in:
48
init.d/.gitignore
vendored
Normal file
48
init.d/.gitignore
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
agetty
|
||||
binfmt
|
||||
modules-load
|
||||
bootmisc
|
||||
fsck
|
||||
hostname
|
||||
local
|
||||
localmount
|
||||
loopback
|
||||
moused
|
||||
netmount
|
||||
network
|
||||
root
|
||||
savecache
|
||||
swap
|
||||
sysctl
|
||||
urandom
|
||||
devfs
|
||||
dmesg
|
||||
hwclock
|
||||
consolefont
|
||||
keymaps
|
||||
killprocs
|
||||
modules
|
||||
mount-ro
|
||||
mtab
|
||||
net-online
|
||||
numlock
|
||||
osclock
|
||||
binfmt_misc
|
||||
s6-svscan
|
||||
staticroute
|
||||
sysfs
|
||||
devdb
|
||||
hostid
|
||||
newsyslog
|
||||
pf
|
||||
rarpd
|
||||
rc-enabled
|
||||
rpcbind
|
||||
runsvdir
|
||||
savecore
|
||||
swap-blk
|
||||
swclock
|
||||
syslogd
|
||||
termencoding
|
||||
ttys
|
||||
wscons
|
||||
36
init.d/Makefile
Normal file
36
init.d/Makefile
Normal file
@@ -0,0 +1,36 @@
|
||||
include ../mk/net.mk
|
||||
|
||||
DIR= ${INITDIR}
|
||||
SRCS= bootmisc.in fsck.in hostname.in localmount.in loopback.in \
|
||||
netmount.in osclock.in root.in savecache.in swap.in \
|
||||
sysctl.in runsvdir.in urandom.in s6-svscan.in ${SRCS-${OS}}
|
||||
BIN= ${OBJS}
|
||||
|
||||
# Are we installing our network scripts?
|
||||
ifeq (${MKNET},yes)
|
||||
SRCS+= network.in staticroute.in
|
||||
endif
|
||||
|
||||
MK= ../mk
|
||||
include ${MK}/os.mk
|
||||
|
||||
# Generic BSD scripts
|
||||
SRCS-FreeBSD= hostid.in modules.in moused.in newsyslog.in pf.in rarpd.in \
|
||||
rc-enabled.in rpcbind.in savecore.in syslogd.in
|
||||
# These are FreeBSD specific
|
||||
SRCS-FreeBSD+= adjkerntz.in devd.in dumpon.in encswap.in ipfw.in \
|
||||
mixer.in nscd.in powerd.in syscons.in
|
||||
|
||||
SRCS-Linux= agetty.in binfmt.in devfs.in dmesg.in hwclock.in consolefont.in \
|
||||
keymaps.in killprocs.in modules.in mount-ro.in \
|
||||
numlock.in binfmt_misc.in net-online.in sysfs.in termencoding.in
|
||||
|
||||
# Generic BSD scripts
|
||||
SRCS-NetBSD= hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
|
||||
rpcbind.in savecore.in syslogd.in
|
||||
# These are NetBSD specific
|
||||
SRCS-NetBSD+= devdb.in swap-blk.in ttys.in wscons.in
|
||||
|
||||
include ${MK}/scripts.mk
|
||||
|
||||
_installafter_: realinstall
|
||||
69
init.d/adjkerntz.in
Normal file
69
init.d/adjkerntz.in
Normal file
@@ -0,0 +1,69 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
extra_commands="save"
|
||||
|
||||
description="Sets the local clock to UTC or Local Time."
|
||||
description_save="Saves the current time in the BIOS."
|
||||
|
||||
: ${clock:=${CLOCK:-UTC}}
|
||||
if [ "$clock" = "UTC" ]; then
|
||||
utc="UTC"
|
||||
else
|
||||
utc="Local Time"
|
||||
fi
|
||||
|
||||
depend()
|
||||
{
|
||||
provide clock
|
||||
# BSD adjkerntz needs to be able to write to /etc
|
||||
if [ "$clock" = "UTC" -a -e /etc/wall_cmos_clock ] ||
|
||||
[ "$clock" != "UTC" -a ! -e /etc/wall_cmos_clock ]; then
|
||||
need root
|
||||
fi
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Starting the System Clock Adjuster [${utc}]"
|
||||
if [ "$clock" != "UTC" ]; then
|
||||
echo >/etc/wall_cmos_clock
|
||||
start-stop-daemon --start --exec /sbin/adjkerntz -- -i
|
||||
else
|
||||
rm -f /etc/wall_cmos_clock
|
||||
/sbin/adjkerntz -i
|
||||
fi
|
||||
eend $?
|
||||
}
|
||||
|
||||
save()
|
||||
{
|
||||
ebegin "Setting hardware clock using the system clock [${utc}]"
|
||||
adjkerntz -a
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
# Don't tweak the hardware clock on LiveCD halt.
|
||||
if yesno "${clock_systohc:-$CLOCK_SYSTOHC}"; then
|
||||
[ -z "$CDBOOT" ] && save
|
||||
fi
|
||||
|
||||
ebegin "Stopping the System Clock Adjuster"
|
||||
if start-stop-daemon --test --quiet --stop --exec /sbin/adjkerntz; then
|
||||
start-stop-daemon --stop --exec /sbin/adjkerntz
|
||||
eend $?
|
||||
else
|
||||
eend 0
|
||||
fi
|
||||
}
|
||||
33
init.d/agetty.in
Normal file
33
init.d/agetty.in
Normal file
@@ -0,0 +1,33 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2017 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="start agetty on a terminal line"
|
||||
supervisor=supervise-daemon
|
||||
port="${RC_SVCNAME#*.}"
|
||||
term_type="${term_type:-linux}"
|
||||
command=/sbin/agetty
|
||||
command_args_foreground="${agetty_options} ${port} ${baud} ${term_type}"
|
||||
pidfile="/run/${RC_SVCNAME}.pid"
|
||||
export EINFO_QUIET="${quiet:-yes}"
|
||||
|
||||
depend() {
|
||||
after *
|
||||
keyword -prefix
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
if [ -z "$port" ]; then
|
||||
eerror "${RC_SVCNAME} cannot be started directly. You must create"
|
||||
eerror "symbolic links to it for the ports you want to start"
|
||||
eerror "agetty on and add those to the appropriate runlevels."
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
27
init.d/binfmt.in
Normal file
27
init.d/binfmt.in
Normal file
@@ -0,0 +1,27 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Register misc binary format handlers"
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock binfmt_misc
|
||||
use modules devfs
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Loading custom binary format handlers"
|
||||
"$RC_LIBEXECDIR"/sh/binfmt.sh
|
||||
eend $?
|
||||
return 0
|
||||
}
|
||||
41
init.d/binfmt_misc.in
Normal file
41
init.d/binfmt_misc.in
Normal file
@@ -0,0 +1,41 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Mounts binfmt_misc filesystems in /proc."
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
use devfs
|
||||
want modules
|
||||
need localmount
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
# Setup Kernel Support for miscellaneous Binary Formats
|
||||
if [ -d /proc/sys/fs/binfmt_misc ] &&
|
||||
[ ! -e /proc/sys/fs/binfmt_misc/register ]; then
|
||||
if ! grep -qs binfmt_misc /proc/filesystems &&
|
||||
modprobe -q binfmt-misc; then
|
||||
ewarn "The binfmt-misc module needs to be configured in" \
|
||||
"@SYSCONFDIR@/conf.d/modules or built in."
|
||||
fi
|
||||
if grep -qs binfmt_misc /proc/filesystems; then
|
||||
ebegin "Mounting misc binary format filesystem"
|
||||
mount -t binfmt_misc -o nodev,noexec,nosuid \
|
||||
binfmt_misc /proc/sys/fs/binfmt_misc
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
253
init.d/bootmisc.in
Normal file
253
init.d/bootmisc.in
Normal file
@@ -0,0 +1,253 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
before logger
|
||||
after clock root sysctl
|
||||
keyword -prefix -timeout
|
||||
}
|
||||
|
||||
: ${wipe_tmp:=${WIPE_TMP:-yes}}
|
||||
: ${log_dmesg:=${LOG_DMESG:-yes}}
|
||||
|
||||
cleanup_tmp_dir()
|
||||
{
|
||||
local dir="$1"
|
||||
|
||||
if ! [ -d "$dir" ]; then
|
||||
mkdir -p "$dir" || return $?
|
||||
fi
|
||||
checkpath -W "$dir" || return 1
|
||||
chmod a+rwt "$dir" 2> /dev/null
|
||||
cd "$dir" || return 1
|
||||
if yesno $wipe_tmp; then
|
||||
ebegin "Wiping $dir directory"
|
||||
|
||||
# Faster than raw find
|
||||
if ! rm -rf -- [!ajlq\.]* 2>/dev/null ; then
|
||||
# Blah, too many files
|
||||
find . -maxdepth 1 -name '[!ajlq\.]*' -exec rm -rf -- {} +
|
||||
fi
|
||||
|
||||
# pam_mktemp creates a .private directory within which
|
||||
# each user gets a private directory with immutable
|
||||
# bit set; remove the immutable bit before trying to
|
||||
# remove it.
|
||||
[ -d /tmp/.private ] && chattr -R -a /tmp/.private 2> /dev/null
|
||||
|
||||
# Prune the paths that are left
|
||||
find . -maxdepth 1 \
|
||||
! -name . \
|
||||
! -name lost+found \
|
||||
! -name quota.user \
|
||||
! -name aquota.user \
|
||||
! -name quota.group \
|
||||
! -name aquota.group \
|
||||
! -name journal \
|
||||
-exec rm -rf -- {} +
|
||||
eend 0
|
||||
else
|
||||
ebegin "Cleaning $dir directory"
|
||||
rm -rf -- .X*-lock esrv* kio* \
|
||||
jpsock.* .fam* .esd* \
|
||||
orbit-* ssh-* ksocket-* \
|
||||
.*-unix
|
||||
eend 0
|
||||
fi
|
||||
}
|
||||
|
||||
cleanup_var_run_dir()
|
||||
{
|
||||
ebegin "Cleaning /var/run"
|
||||
for x in $(find /var/run ! -type d ! -name utmp \
|
||||
! -name random-seed ! -name dev.db \
|
||||
! -name ld-elf.so.hints ! -name ld-elf32.so.hints \
|
||||
! -name ld.so.hints);
|
||||
do
|
||||
# Clean stale sockets
|
||||
if [ -S "$x" ]; then
|
||||
if command -v fuser >/dev/null 2>&1; then
|
||||
fuser "$x" >/dev/null 2>&1 || rm -- "$x"
|
||||
else
|
||||
rm -- "$x"
|
||||
fi
|
||||
fi
|
||||
[ ! -f "$x" ] && continue
|
||||
# Do not remove pidfiles of already running daemons
|
||||
case "$x" in
|
||||
*.pid)
|
||||
start-stop-daemon --test --quiet \
|
||||
--stop --pidfile "$x" && continue
|
||||
;;
|
||||
esac
|
||||
rm -f -- "$x"
|
||||
done
|
||||
eend 0
|
||||
}
|
||||
|
||||
mkutmp()
|
||||
{
|
||||
: >"$1"
|
||||
# Not all systems have the utmp group
|
||||
chgrp utmp "$1" 2>/dev/null
|
||||
chmod 0664 "$1"
|
||||
}
|
||||
|
||||
migrate_to_run()
|
||||
{
|
||||
src="$1"
|
||||
dst="$2"
|
||||
if [ -L $src -a "$(readlink -f $src)" != $dst ]; then
|
||||
ewarn "$src does not point to $dst."
|
||||
ewarn "Setting $src to point to $dst."
|
||||
rm $src
|
||||
elif [ ! -L $src -a -d $src ]; then
|
||||
ebegin "Migrating $src to $dst"
|
||||
cp -a $src/* $dst/
|
||||
rm -rf $src
|
||||
eend $?
|
||||
fi
|
||||
# If $src doesn't exist at all, just run this
|
||||
if [ ! -e $src ]; then
|
||||
ln -s $dst $src
|
||||
fi
|
||||
}
|
||||
|
||||
clean_run()
|
||||
{
|
||||
[ "$RC_SYS" = VSERVER -o "$RC_SYS" = LXC ] && return 0
|
||||
local dir
|
||||
# If / is still read-only due to a problem, this will fail!
|
||||
if ! checkpath -W /; then
|
||||
ewarn "/ is not writable; unable to clean up underlying /run"
|
||||
return 1
|
||||
fi
|
||||
if ! checkpath -W /tmp; then
|
||||
ewarn "/tmp is not writable; unable to clean up underlying /run"
|
||||
return 1
|
||||
fi
|
||||
# Now we know that we can modify /tmp and /
|
||||
# if mktemp -d fails, it returns an EMPTY string
|
||||
# STDERR: mktemp: failed to create directory via template ‘/tmp/tmp.XXXXXXXXXX’: Read-only file system
|
||||
# STDOUT: ''
|
||||
rc=0
|
||||
dir=$(mktemp -d)
|
||||
if [ -n "$dir" -a -d $dir -a -w $dir ]; then
|
||||
mount --bind / $dir && rm -rf $dir/run/* || rc=1
|
||||
umount $dir && rmdir $dir
|
||||
else
|
||||
rc=1
|
||||
fi
|
||||
if [ $rc -ne 0 ]; then
|
||||
ewarn "Could not clean up underlying /run on /"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
# Remove any added console dirs
|
||||
if checkpath -W "$RC_LIBEXECDIR"; then
|
||||
rm -rf "$RC_LIBEXECDIR"/console/*
|
||||
fi
|
||||
|
||||
local logw=false runw=false extra=
|
||||
# Ensure that our basic dirs exist
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
# Satisfy GNU/Linux FHS
|
||||
extra=/var/lib/misc
|
||||
if [ ! -d /run ]; then
|
||||
extra="/var/run $extra"
|
||||
fi
|
||||
else
|
||||
extra=/var/run
|
||||
fi
|
||||
for x in /var/log /tmp $extra; do
|
||||
if ! [ -d $x ]; then
|
||||
if ! mkdir -p $x; then
|
||||
eend 1 "failed to create needed directory $x"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$RC_UNAME" = Linux -a -d /run ]; then
|
||||
migrate_to_run /var/lock /run/lock
|
||||
migrate_to_run /var/run /run
|
||||
clean_run
|
||||
fi
|
||||
|
||||
if checkpath -W /var/run; then
|
||||
ebegin "Creating user login records"
|
||||
local xtra=
|
||||
[ "$RC_UNAME" = NetBSD ] && xtra=x
|
||||
for x in "" $xtra; do
|
||||
mkutmp /var/run/utmp$x
|
||||
done
|
||||
[ -e /var/log/wtmp ] || mkutmp /var/log/wtmp
|
||||
eend 0
|
||||
|
||||
mountinfo -q -f tmpfs /var/run || cleanup_var_run_dir
|
||||
fi
|
||||
|
||||
# Clean up /tmp directories
|
||||
local tmp=
|
||||
for tmp in ${clean_tmp_dirs:-${wipe_tmp_dirs-/tmp}}; do
|
||||
mountinfo -q -f tmpfs "$tmp" || cleanup_tmp_dir "$tmp"
|
||||
done
|
||||
|
||||
if checkpath -W /tmp; then
|
||||
# Make sure our X11 stuff have the correct permissions
|
||||
# Omit the chown as bootmisc is run before network is up
|
||||
# and users may be using lame LDAP auth #139411
|
||||
rm -rf /tmp/.ICE-unix /tmp/.X11-unix
|
||||
mkdir -p /tmp/.ICE-unix /tmp/.X11-unix
|
||||
chmod 1777 /tmp/.ICE-unix /tmp/.X11-unix
|
||||
if [ -x /sbin/restorecon ]; then
|
||||
restorecon /tmp/.ICE-unix /tmp/.X11-unix
|
||||
fi
|
||||
fi
|
||||
|
||||
if yesno $log_dmesg; then
|
||||
if $logw || checkpath -W /var/log; then
|
||||
# Create an 'after-boot' dmesg log
|
||||
case "$RC_SYS" in
|
||||
VSERVER|OPENVZ|LXC|CHROOT+UNSHARE) ;;
|
||||
*)
|
||||
if yesno ${previous_dmesg:-no}; then
|
||||
mv /var/log/dmesg /var/log/dmesg.old
|
||||
fi
|
||||
dmesg > /var/log/dmesg
|
||||
chmod 640 /var/log/dmesg
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
# Write a halt record if we're shutting down
|
||||
if [ "$RC_RUNLEVEL" = shutdown ]; then
|
||||
[ "$RC_UNAME" = Linux ] && openrc-shutdown -w
|
||||
if [ "$RC_SYS" = OPENVZ ]; then
|
||||
yesno $RC_REBOOT && printf "" >/reboot
|
||||
fi
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# vim: ft=sh
|
||||
70
init.d/consolefont.in
Normal file
70
init.d/consolefont.in
Normal file
@@ -0,0 +1,70 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Sets a font for the consoles."
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount termencoding
|
||||
after hotplug bootmisc modules
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -uml -vserver -xenu
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
||||
consolefont=${consolefont:-${CONSOLEFONT}}
|
||||
unicodemap=${unicodemap:-${UNICODEMAP}}
|
||||
consoletranslation=${consoletranslation:-${CONSOLETRANSLATION}}
|
||||
|
||||
if [ -z "$consolefont" ]; then
|
||||
ebegin "Using the default console font"
|
||||
eend 0
|
||||
return 0
|
||||
fi
|
||||
|
||||
if [ "$ttyn" = 0 ]; then
|
||||
ebegin "Skipping font setup (rc_tty_number == 0)"
|
||||
eend 0
|
||||
return 0
|
||||
fi
|
||||
|
||||
local x= param= sf_param= retval=0 ttydev=/dev/tty
|
||||
|
||||
# Get additional parameters
|
||||
if [ -n "$consoletranslation" ]; then
|
||||
param="$param -m $consoletranslation"
|
||||
fi
|
||||
if [ -n "${unicodemap}" ]; then
|
||||
param="$param -u $unicodemap"
|
||||
fi
|
||||
|
||||
# Set the console font
|
||||
ebegin "Setting console font [$consolefont]"
|
||||
[ -d /dev/vc ] && ttydev=/dev/vc/
|
||||
x=1
|
||||
while [ $x -le $ttyn ]; do
|
||||
if ! setfont $consolefont $param -C $ttydev$x >/dev/null; then
|
||||
retval=1
|
||||
break
|
||||
fi
|
||||
: $(( x += 1 ))
|
||||
done
|
||||
eend $retval
|
||||
|
||||
# Store the font so we can use it ASAP on boot
|
||||
if [ $retval -eq 0 ] && checkpath -W "$RC_LIBEXECDIR"; then
|
||||
mkdir -p "$RC_LIBEXECDIR"/console
|
||||
setfont -O "$RC_LIBEXECDIR"/console/font
|
||||
fi
|
||||
|
||||
return $retval
|
||||
}
|
||||
29
init.d/devd.in
Normal file
29
init.d/devd.in
Normal file
@@ -0,0 +1,29 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/sbin/devd
|
||||
command_args=$devd_args
|
||||
name="Device State Change Daemon"
|
||||
|
||||
depend() {
|
||||
need localmount
|
||||
after bootmisc
|
||||
before net.lo0
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
sysctl hw.bus.devctl_disable=0 >/dev/null
|
||||
}
|
||||
|
||||
stop_post() {
|
||||
sysctl hw.bus.devctl_disable=1 >/dev/null
|
||||
}
|
||||
29
init.d/devdb.in
Normal file
29
init.d/devdb.in
Normal file
@@ -0,0 +1,29 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2008-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Creates the dev database"
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
need localmount
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Building the dev database"
|
||||
if [ /var/run/dev.db -nt /dev ]; then
|
||||
:
|
||||
else
|
||||
dev_mkdb
|
||||
fi
|
||||
eend $?
|
||||
}
|
||||
127
init.d/devfs.in
Normal file
127
init.d/devfs.in
Normal file
@@ -0,0 +1,127 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Set up the /dev directory"
|
||||
|
||||
depend()
|
||||
{
|
||||
before dev logger
|
||||
keyword -docker -lxc -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
mount_dev()
|
||||
{
|
||||
local action=--mount devfstype msg=Mounting
|
||||
# Some devices require exec, Bug #92921
|
||||
local mountopts="exec,nosuid,mode=0755"
|
||||
if yesno ${skip_mount_dev:-no} ; then
|
||||
einfo "/dev will not be mounted due to user request"
|
||||
return 0
|
||||
fi
|
||||
if mountinfo -q /dev; then
|
||||
action=--remount
|
||||
mountopts="remount,$mountopts"
|
||||
msg=Remounting
|
||||
fi
|
||||
if fstabinfo -q /dev; then
|
||||
ebegin "$msg /dev according to @SYSCONFDIR@/fstab"
|
||||
fstabinfo -q $action /dev
|
||||
eend $?
|
||||
return 0
|
||||
fi
|
||||
if grep -q devtmpfs /proc/filesystems; then
|
||||
devfstype=devtmpfs
|
||||
mountopts="$mountopts,size=10M"
|
||||
elif grep -q tmpfs /proc/filesystems; then
|
||||
devfstype=tmpfs
|
||||
mountopts="$mountopts,size=10M"
|
||||
fi
|
||||
if [ -n "$devfstype" ]; then
|
||||
ebegin "$msg $devfstype on /dev"
|
||||
mount -n -t $devfstype -o $mountopts dev /dev
|
||||
eend $?
|
||||
else
|
||||
ewarn "This kernel does not have devtmpfs or tmpfs support, and there"
|
||||
ewarn "is no entry for /dev in fstab."
|
||||
ewarn "This means /dev will not be mounted."
|
||||
ewarn "To avoid this message, set CONFIG_DEVTMPFS or CONFIG_TMPFS to y"
|
||||
ewarn "in your kernel configuration or see @SYSCONFDIR@/conf.d/devfs"
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
seed_dev()
|
||||
{
|
||||
# Seed /dev with some things that we know we need
|
||||
|
||||
# creating /dev/console, /dev/tty and /dev/tty1 to be able to write
|
||||
# to $CONSOLE with/without bootsplash before udevd creates it
|
||||
[ -c /dev/console ] || mknod -m 600 /dev/console c 5 1
|
||||
[ -c /dev/tty1 ] || mknod -m 620 /dev/tty1 c 4 1
|
||||
[ -c /dev/tty ] || mknod -m 666 /dev/tty c 5 0
|
||||
|
||||
# udevd will dup its stdin/stdout/stderr to /dev/null
|
||||
# and we do not want a file which gets buffered in ram
|
||||
[ -c /dev/null ] || mknod -m 666 /dev/null c 1 3
|
||||
|
||||
# so udev can add its start-message to dmesg
|
||||
[ -c /dev/kmsg ] || mknod -m 660 /dev/kmsg c 1 11
|
||||
|
||||
# extra symbolic links not provided by default
|
||||
[ -e /dev/fd ] || ln -snf /proc/self/fd /dev/fd
|
||||
[ -e /dev/stdin ] || ln -snf /proc/self/fd/0 /dev/stdin
|
||||
[ -e /dev/stdout ] || ln -snf /proc/self/fd/1 /dev/stdout
|
||||
[ -e /dev/stderr ] || ln -snf /proc/self/fd/2 /dev/stderr
|
||||
[ -e /proc/kcore ] && ln -snf /proc/kcore /dev/core
|
||||
|
||||
# Mount required directories as user may not have them in /etc/fstab
|
||||
for x in \
|
||||
"mqueue /dev/mqueue 1777 ,nodev mqueue" \
|
||||
"devpts /dev/pts 0755 ,gid=5,mode=0620,newinstance devpts" \
|
||||
"tmpfs /dev/shm 1777 ,nodev,mode=1777 shm" \
|
||||
; do
|
||||
set -- $x
|
||||
grep -Eq "[[:space:]]+$1$" /proc/filesystems || continue
|
||||
mountinfo -q $2 && continue
|
||||
|
||||
if [ ! -d $2 ]; then
|
||||
mkdir -m $3 -p $2 >/dev/null 2>&1 || \
|
||||
ewarn "Could not create $2!"
|
||||
fi
|
||||
|
||||
if [ -d $2 ]; then
|
||||
ebegin "Mounting $2"
|
||||
if ! fstabinfo --mount $2; then
|
||||
mount -n -t $1 -o noexec,nosuid$4 $5 $2
|
||||
fi
|
||||
eend $?
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
restorecon_dev()
|
||||
{
|
||||
if [ -x /sbin/restorecon ]; then
|
||||
ebegin "Restoring SELinux contexts in /dev"
|
||||
restorecon -rF /dev >/dev/null 2>&1
|
||||
eend $?
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
mount_dev
|
||||
seed_dev
|
||||
restorecon_dev
|
||||
return 0
|
||||
}
|
||||
25
init.d/dmesg.in
Normal file
25
init.d/dmesg.in
Normal file
@@ -0,0 +1,25 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Set the dmesg level for a cleaner boot"
|
||||
|
||||
depend()
|
||||
{
|
||||
before dev modules
|
||||
keyword -docker -lxc -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
if [ -n "$dmesg_level" ]; then
|
||||
dmesg -n$dmesg_level
|
||||
fi
|
||||
}
|
||||
33
init.d/dumpon.in
Normal file
33
init.d/dumpon.in
Normal file
@@ -0,0 +1,33 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Configures a specific kernel dump device."
|
||||
|
||||
depend() {
|
||||
after clock
|
||||
need swap
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start() {
|
||||
# Setup any user requested dump device
|
||||
if [ -n "$dump_device" ]; then
|
||||
ebegin "Activating kernel core dump device ($dump_device)"
|
||||
dumpon ${dump_device}
|
||||
eend $?
|
||||
fi
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Deactivating kernel core dump device"
|
||||
dumpon off
|
||||
eend $?
|
||||
}
|
||||
43
init.d/encswap.in
Normal file
43
init.d/encswap.in
Normal file
@@ -0,0 +1,43 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright 1992-2012 FreeBSD Project
|
||||
# Released under the 2-clause BSD license
|
||||
|
||||
depend() {
|
||||
before swap
|
||||
}
|
||||
|
||||
start() {
|
||||
while read device mountpoint type options rest ; do
|
||||
case ":${device}:${type}:${options}" in
|
||||
:#*)
|
||||
;;
|
||||
*.bde:swap:sw)
|
||||
passphrase=$(dd if=/dev/random count=1 2>/dev/null | md5 -q)
|
||||
device="${device%.bde}"
|
||||
gbde init "${device}" -P "${passphrase}" || return 1
|
||||
gbde attach "${device}" -p "${passphrase}" || return 1
|
||||
;;
|
||||
*.eli:swap:sw)
|
||||
device="${device%.eli}"
|
||||
geli onetime ${geli_swap_flags} "${device}" || return 1
|
||||
;;
|
||||
esac
|
||||
done < /etc/fstab
|
||||
}
|
||||
|
||||
stop() {
|
||||
while read device mountpoint type options rest ; do
|
||||
case ":${device}:${type}:${options}" in
|
||||
:#*)
|
||||
;;
|
||||
*.bde:swap:sw)
|
||||
device="${device%.bde}"
|
||||
gbde detach "${device}"
|
||||
;;
|
||||
*.eli:swap:sw)
|
||||
# Nothing here, because geli swap devices should be
|
||||
# created with the auto-detach-on-last-close option.
|
||||
;;
|
||||
esac
|
||||
done < /etc/fstab
|
||||
}
|
||||
131
init.d/fsck.in
Normal file
131
init.d/fsck.in
Normal file
@@ -0,0 +1,131 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Check and repair filesystems according to /etc/fstab"
|
||||
_IFS="
|
||||
"
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
use dev clock modules
|
||||
keyword -docker -jail -lxc -openvz -prefix -chroot+unshare -timeout -vserver -uml
|
||||
}
|
||||
|
||||
_abort() {
|
||||
yesno ${fsck_abort_on_errors:-yes} && rc-abort
|
||||
return 1
|
||||
}
|
||||
|
||||
# We should only reboot when first booting
|
||||
_reboot() {
|
||||
if [ "$RC_RUNLEVEL" = "$RC_BOOTLEVEL" ]; then
|
||||
reboot "$@"
|
||||
_abort || return 1
|
||||
fi
|
||||
}
|
||||
|
||||
_forcefsck()
|
||||
{
|
||||
[ -e /forcefsck ] || get_bootparam forcefsck
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local fsck_opts= p= check_extra=
|
||||
|
||||
if [ -e /fastboot ]; then
|
||||
ewarn "Skipping fsck due to /fastboot"
|
||||
return 0
|
||||
fi
|
||||
if _forcefsck; then
|
||||
fsck_opts="$fsck_opts -f"
|
||||
check_extra="(check forced)"
|
||||
elif ! yesno ${fsck_on_battery:-YES} && ! on_ac_power; then
|
||||
ewarn "Skipping fsck due to not being on AC power"
|
||||
return 0
|
||||
fi
|
||||
|
||||
if [ -n "$fsck_passno" ]; then
|
||||
check_extra="[passno $fsck_passno] $check_extra"
|
||||
if [ -n "$fsck_mnt" ]; then
|
||||
eerror "Only 1 of fsck_passno and fsck_mnt must be set!"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
ebegin "Checking local filesystems $check_extra"
|
||||
# Append passno mounts
|
||||
for p in $fsck_passno; do
|
||||
local IFS="$_IFS"
|
||||
case "$p" in
|
||||
[0-9]*) p="=$p";;
|
||||
esac
|
||||
set -- "$@" $(fstabinfo --passno "$p")
|
||||
unset IFS
|
||||
done
|
||||
# Append custom mounts
|
||||
for m in $fsck_mnt ; do
|
||||
local IFS="$_IFS"
|
||||
set -- "$@" "$m"
|
||||
unset IFS
|
||||
done
|
||||
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
local skiptypes
|
||||
skiptypes=$(printf 'no%s,' ${net_fs_list} ${extra_net_fs_list})
|
||||
[ "${skiptypes}" = "no," ] && skiptypes=""
|
||||
fsck_opts="$fsck_opts -C0 -T -t ${skiptypes}noopts=_netdev"
|
||||
if [ -z "$fsck_passno" -a -z "$fsck_mnt" ]; then
|
||||
fsck_args=${fsck_args:--A -p}
|
||||
if echo 2>/dev/null >/.test.$$; then
|
||||
rm -f /.test.$$
|
||||
fsck_opts="$fsck_opts -R"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
trap : INT QUIT
|
||||
fsck ${fsck_args:--p} $fsck_opts "$@"
|
||||
case $? in
|
||||
0) eend 0; return 0;;
|
||||
1) ewend 1 "Filesystems repaired"; return 0;;
|
||||
2|3) if [ "$RC_UNAME" = Linux ]; then
|
||||
ewend 1 "Filesystems repaired, but reboot needed"
|
||||
_reboot -f
|
||||
else
|
||||
ewend 1 "Filesystems still have errors;" \
|
||||
"manual fsck required"
|
||||
_abort
|
||||
fi;;
|
||||
4) if [ "$RC_UNAME" = Linux ]; then
|
||||
ewend 1 "Fileystem errors left uncorrected, aborting"
|
||||
_abort
|
||||
else
|
||||
ewend 1 "Filesystems repaired, but reboot needed"
|
||||
_reboot
|
||||
fi;;
|
||||
8) ewend 1 "Operational error"; return 0;;
|
||||
12) ewend 1 "fsck interrupted";;
|
||||
*) eend 2 "Filesystems couldn't be fixed";;
|
||||
esac
|
||||
_abort || return 1
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
# Fake function so we always shutdown correctly.
|
||||
_abort() { return 0; }
|
||||
_reboot() { return 0; }
|
||||
_forcefsck() { return 1; }
|
||||
|
||||
yesno $fsck_shutdown && start
|
||||
return 0
|
||||
}
|
||||
88
init.d/hostid.in
Normal file
88
init.d/hostid.in
Normal file
@@ -0,0 +1,88 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
extra_commands="reset"
|
||||
: ${hostid_file:=/etc/hostid}
|
||||
|
||||
depend()
|
||||
{
|
||||
use root
|
||||
after clock
|
||||
before devd net
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
_set()
|
||||
{
|
||||
local id=0
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
id=$(echo "$1" | md5)
|
||||
id="0x${id%????????????????????????}"
|
||||
fi
|
||||
ebegin "Setting Host ID: $id"
|
||||
sysctl -w kern.hostid="$id" >/dev/null
|
||||
eend $? || return 1
|
||||
|
||||
if sysctl -n kern.hostuuid >/dev/null 2>&1; then
|
||||
[ -n "$1" ] && id=$1
|
||||
ebegin "Setting Host UUID: $id"
|
||||
sysctl kern.hostuuid="$id" >/dev/null
|
||||
eend $? || return 1
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
# First we check to see if there is a system UUID
|
||||
# If so then we use that and erase the hostid file,
|
||||
# otherwise we generate a random UUID.
|
||||
reset()
|
||||
{
|
||||
local uuid= x="[0-9a-f]" y="$x$x$x$x"
|
||||
|
||||
if command -v kenv >/dev/null 2>&1; then
|
||||
uuid=$(kenv smbios.system.uuid 2>/dev/null)
|
||||
fi
|
||||
case "$uuid" in
|
||||
$y$y-$y-$y-$y-$y$y$y);;
|
||||
*) uuid=;;
|
||||
esac
|
||||
|
||||
if [ -n "$uuid" ]; then
|
||||
rm -f "$hostid_file"
|
||||
else
|
||||
uuid=$(uuidgen)
|
||||
if [ -z "$uuid" ]; then
|
||||
eerror "Unable to generate a UUID"
|
||||
return 1
|
||||
fi
|
||||
if ! echo "$uuid" >"$hostid_file"; then
|
||||
eerror "Failed to store UUID in \`$hostid_file'"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
||||
_set "$uuid"
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
if [ -r "$hostid_file" ]; then
|
||||
_set $(cat "$hostid_file")
|
||||
else
|
||||
reset
|
||||
fi
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
_set
|
||||
}
|
||||
45
init.d/hostname.in
Normal file
45
init.d/hostname.in
Normal file
@@ -0,0 +1,45 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Sets the hostname of the machine."
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
keyword -docker -lxc -prefix -chroot+unshare
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local h source x
|
||||
if [ -s @SYSCONFDIR@/hostname ] && [ -r @SYSCONFDIR@/hostname ]; then
|
||||
read h x <@SYSCONFDIR@/hostname
|
||||
source="from @SYSCONFDIR@/hostname"
|
||||
else
|
||||
# HOSTNAME variable used to be defined in caps in conf.d/hostname.
|
||||
# It is also a magic variable in bash.
|
||||
h=${hostname:-${HOSTNAME}} # checkbashisms: false positive (HOSTNAME var)
|
||||
fi
|
||||
if [ -z "$h" ]; then
|
||||
einfo "Using default system hostname"
|
||||
return 0
|
||||
fi
|
||||
ebegin "Setting hostname to $h $source"
|
||||
case $(uname -s) in
|
||||
GNU/Linux|Linux)
|
||||
sysctl -qw kernel.hostname="$h"
|
||||
;;
|
||||
*)
|
||||
hostname "$h"
|
||||
;;
|
||||
esac
|
||||
eend $? "Failed to set the hostname"
|
||||
}
|
||||
160
init.d/hwclock.in
Normal file
160
init.d/hwclock.in
Normal file
@@ -0,0 +1,160 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
extra_commands="save show"
|
||||
|
||||
description="Sets the local clock to UTC or Local Time."
|
||||
description_save="Saves the current time in the BIOS."
|
||||
description_show="Displays the current time in the BIOS."
|
||||
|
||||
: ${clock_adjfile:=${CLOCK_ADJFILE}}
|
||||
: ${clock_args:=${CLOCK_OPTS}}
|
||||
: ${clock_systohc:=${CLOCK_SYSTOHC}}
|
||||
: ${clock:=${CLOCK:-UTC}}
|
||||
if [ "$clock" = "UTC" ]; then
|
||||
utc="UTC"
|
||||
utc_cmd="--utc"
|
||||
else
|
||||
utc="Local Time"
|
||||
utc_cmd="--localtime"
|
||||
fi
|
||||
|
||||
depend()
|
||||
{
|
||||
provide clock
|
||||
want modules
|
||||
if yesno $clock_adjfile; then
|
||||
use root
|
||||
fi
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -uml -vserver -xenu
|
||||
}
|
||||
|
||||
setupopts()
|
||||
{
|
||||
case "$(uname -m)" in
|
||||
s390*)
|
||||
utc="s390"
|
||||
;;
|
||||
*)
|
||||
if [ -e /proc/devices ] && \
|
||||
grep -q " cobd$" /proc/devices
|
||||
then
|
||||
utc="coLinux"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$utc" in
|
||||
UTC|Local" "Time);;
|
||||
*) unset utc_cmd;;
|
||||
esac
|
||||
}
|
||||
|
||||
# hwclock doesn't always return non zero on error
|
||||
_hwclock()
|
||||
{
|
||||
local err="$(hwclock "$@" 2>&1 >/dev/null)"
|
||||
|
||||
[ -z "$err" ] && return 0
|
||||
echo "${err}" >&2
|
||||
return 1
|
||||
}
|
||||
|
||||
get_noadjfile()
|
||||
{
|
||||
if ! yesno $clock_adjfile; then
|
||||
# Some implementations don't handle adjustments
|
||||
if LC_ALL=C hwclock --help 2>&1 | grep -q "\-\-noadjfile"; then
|
||||
echo --noadjfile
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
rtc_exists()
|
||||
{
|
||||
local rtc=
|
||||
for rtc in /dev/rtc /dev/rtc[0-9]*; do
|
||||
[ -e "$rtc" ] && break
|
||||
done
|
||||
[ -e "$rtc" ]
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local retval=0 errstr="" modname
|
||||
setupopts
|
||||
|
||||
if [ -z "$utc_cmd" ]; then
|
||||
ewarn "Not setting clock for $utc system"
|
||||
return 0
|
||||
fi
|
||||
|
||||
ebegin "Setting system clock using the hardware clock [$utc]"
|
||||
if [ -e /proc/modules ]; then
|
||||
if ! rtc_exists; then
|
||||
for x in rtc-cmos rtc genrtc; do
|
||||
modprobe -q $x && rtc_exists && modname="$x" && break
|
||||
done
|
||||
[ -n "$modname" ] &&
|
||||
ewarn "The $modname module needs to be configured in" \
|
||||
"@SYSCONFDIR@/conf.d/modules or built in."
|
||||
fi
|
||||
fi
|
||||
|
||||
# Always set the kernel's time zone.
|
||||
_hwclock --systz $utc_cmd $(get_noadjfile) $clock_args
|
||||
: $(( retval += $? ))
|
||||
|
||||
if [ -e /etc/adjtime ] && yesno $clock_adjfile; then
|
||||
_hwclock --adjust $utc_cmd $(get_noadjfile)
|
||||
: $(( retval += $? ))
|
||||
fi
|
||||
|
||||
if yesno ${clock_hctosys:-YES}; then
|
||||
_hwclock --hctosys $utc_cmd $(get_noadjfile) $clock_args
|
||||
: $(( retval += $? ))
|
||||
fi
|
||||
|
||||
eend $retval "Failed to set the system clock"
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
# Don't tweak the hardware clock on LiveCD halt.
|
||||
[ -n "$CDBOOT" ] && return 0
|
||||
yesno ${clock_systohc:-YES} || return 0
|
||||
|
||||
local retval=0 errstr=""
|
||||
setupopts
|
||||
|
||||
[ -z "$utc_cmd" ] && return 0
|
||||
|
||||
ebegin "Setting hardware clock using the system clock" "[$utc]"
|
||||
|
||||
_hwclock --systohc $utc_cmd $(get_noadjfile) $clock_args
|
||||
retval=$?
|
||||
|
||||
eend $retval "Failed to sync clocks"
|
||||
}
|
||||
|
||||
save()
|
||||
{
|
||||
clock_systohc=yes
|
||||
stop
|
||||
}
|
||||
|
||||
show()
|
||||
{
|
||||
setupopts
|
||||
hwclock --show "$utc_cmd" $(get_noadjfile) $clock_args
|
||||
}
|
||||
166
init.d/ipfw.in
Normal file
166
init.d/ipfw.in
Normal file
@@ -0,0 +1,166 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
# This is based on /etc/rc.firewall and /etc/rc.firewall6 from FreeBSD
|
||||
|
||||
ipfw_ip_in=${ipfw_ip_in-any}
|
||||
ipfw_ports_in=${ipfw_ports_in-auth ssh}
|
||||
ipfw_ports_nolog=${ipfw_ports_nolog-135-139,445 1026,1027 1433,1434}
|
||||
|
||||
extra_commands="panic showstatus"
|
||||
|
||||
depend() {
|
||||
before net
|
||||
provide firewall
|
||||
keyword -jail
|
||||
}
|
||||
|
||||
ipfw() {
|
||||
/sbin/ipfw -f -q "$@"
|
||||
}
|
||||
|
||||
have_ip6() {
|
||||
sysctl net.ipv6 2>/dev/null
|
||||
}
|
||||
|
||||
init() {
|
||||
# Load the kernel module
|
||||
if ! sysctl net.inet.ip.fw.enable=1 >/dev/null 2>&1; then
|
||||
if ! kldload ipfw; then
|
||||
eend 1 "Unable to load firewall module"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# Now all rules and give a good base
|
||||
ipfw flush
|
||||
|
||||
ipfw add pass all from any to any via lo0
|
||||
ipfw add deny all from any to 127.0.0.0/8
|
||||
ipfw add deny ip from 127.0.0.0/8 to any
|
||||
|
||||
if have_ip6; then
|
||||
ipfw add pass ip6 from any to any via lo0
|
||||
ipfw add deny ip6 from any to ::1
|
||||
ipfw add deny ip6 from ::1 to any
|
||||
|
||||
ipfw add pass ip6 from :: to ff02::/16 proto ipv6-icmp
|
||||
ipfw add pass ip6 from fe80::/10 to fe80::/10 proto ipv6-icmp
|
||||
ipfw add pass ip6 from fe80::/10 to ff02::/16 proto ipv6-icmp
|
||||
fi
|
||||
}
|
||||
|
||||
start() {
|
||||
local i= p= log=
|
||||
ebegin "Starting firewall rules"
|
||||
if ! init; then
|
||||
eend 1 "Failed to flush firewall ruleset"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# Use a stateful firewall
|
||||
ipfw add check-state
|
||||
ipfw add pass tcp from me to any established
|
||||
|
||||
# Allow any connection out, adding state for each.
|
||||
ipfw add pass tcp from me to any setup keep-state
|
||||
ipfw add pass udp from me to any keep-state
|
||||
ipfw add pass icmp from me to any keep-state
|
||||
|
||||
if have_ip6; then
|
||||
ipfw add pass tcp from me6 to any setup keep-state
|
||||
ipfw add pass udp from me6 to any keep-state
|
||||
ipfw add pass icmp from me6 to any keep-state
|
||||
fi
|
||||
|
||||
# Allow DHCP.
|
||||
ipfw add pass udp from 0.0.0.0 68 to 255.255.255.255 67 out
|
||||
ipfw add pass udp from any 67 to me 68 in
|
||||
ipfw add pass udp from any 67 to 255.255.255.255 68 in
|
||||
# Some servers will ping the IP while trying to decide if it's
|
||||
# still in use.
|
||||
ipfw add pass icmp from any to any icmptype 8
|
||||
|
||||
# Allow "mandatory" ICMP in.
|
||||
ipfw add pass icmp from any to any icmptype 3,4,11
|
||||
|
||||
if have_ip6; then
|
||||
# Allow ICMPv6 destination unreach
|
||||
ipfw add pass ip6 from any to any icmp6types 1 proto ipv6-icmp
|
||||
|
||||
# Allow NS/NA/toobig (don't filter it out)
|
||||
ipfw add pass ip6 from any to any icmp6types 2,135,136 proto ipv6-icmp
|
||||
fi
|
||||
|
||||
# Add permits for this workstations published services below
|
||||
# Only IPs and nets in firewall_allowservices is allowed in.
|
||||
for i in $ipfw_ip_in; do
|
||||
for p in $ipfw_ports_in; do
|
||||
ipfw add pass tcp from $i to me $p
|
||||
done
|
||||
done
|
||||
|
||||
# Allow all connections from trusted IPs.
|
||||
# Playing with the content of firewall_trusted could seriously
|
||||
# degrade the level of protection provided by the firewall.
|
||||
for i in $ipfw_ip_trust; do
|
||||
ipfw add pass ip from $i to me
|
||||
done
|
||||
|
||||
ipfw add 65000 count ip from any to any
|
||||
|
||||
# Drop packets to ports where we don't want logging
|
||||
for p in $ipfw_ports_nolog; do
|
||||
ipfw add deny { tcp or udp } from any to any $p in
|
||||
done
|
||||
|
||||
# Broadcasts and muticasts
|
||||
ipfw add deny ip from any to 255.255.255.255
|
||||
ipfw add deny ip from any to 224.0.0.0/24
|
||||
|
||||
# Noise from routers
|
||||
ipfw add deny udp from any to any 520 in
|
||||
|
||||
# Noise from webbrowsing.
|
||||
# The stateful filter is a bit aggressive, and will cause some
|
||||
# connection teardowns to be logged.
|
||||
ipfw add deny tcp from any 80,443 to any 1024-65535 in
|
||||
|
||||
# Deny and (if wanted) log the rest unconditionally.
|
||||
if yesno ${ipfw_log_deny:-no}; then
|
||||
log=log
|
||||
sysctl net.inet.ip.fw.verbose=1 >/dev/null
|
||||
fi
|
||||
ipfw add deny $log ip from any to any
|
||||
|
||||
eend 0
|
||||
}
|
||||
|
||||
stop() {
|
||||
ebegin "Stopping firewall rules"
|
||||
# We don't unload the kernel module as that action
|
||||
# can cause memory leaks as of FreeBSD 6.x
|
||||
sysctl net.inet.ip.fw.enable=0 >/dev/null
|
||||
eend $?
|
||||
}
|
||||
|
||||
panic() {
|
||||
ebegin "Stopping firewall rules - hard"
|
||||
if ! init; then
|
||||
eend 1 "Failed to flush firewall ruleset"
|
||||
return 1
|
||||
fi
|
||||
eend 0
|
||||
}
|
||||
|
||||
showstatus() {
|
||||
ipfw show
|
||||
}
|
||||
77
init.d/keymaps.in
Normal file
77
init.d/keymaps.in
Normal file
@@ -0,0 +1,77 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Applies a keymap for the consoles."
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount termencoding
|
||||
after bootmisc clock
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -uml -vserver -xenu
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
||||
: ${unicode:=$UNICODE}
|
||||
: ${keymap:=$KEYMAP}
|
||||
: ${extended_keymaps:=$EXTENDED_KEYMAPS}
|
||||
: ${windowkeys:=$SET_WINDOWSKEYS}
|
||||
: ${fix_euro:=$FIX_EURO}
|
||||
: ${dumpkeys_charset:=${DUMPKEYS_CHARSET}}
|
||||
|
||||
if [ -z "$keymap" ]; then
|
||||
eerror "You need to setup keymap in /etc/conf.d/keymaps first"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local ttydev=/dev/tty n=
|
||||
[ -d /dev/vc ] && ttydev=/dev/vc/
|
||||
|
||||
# Force linux keycodes for PPC.
|
||||
if [ -f /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes ]; then
|
||||
echo 1 > /proc/sys/dev/mac_hid/keyboard_sends_linux_keycodes
|
||||
fi
|
||||
|
||||
local wkeys= kmode="-a" msg="ASCII"
|
||||
if yesno $unicode; then
|
||||
kmode="-u"
|
||||
msg="UTF-8"
|
||||
fi
|
||||
yesno $windowkeys && wkeys="windowkeys"
|
||||
|
||||
# Set terminal encoding to either ASCII or UNICODE.
|
||||
# See utf-8(7) for more information.
|
||||
ebegin "Setting keyboard mode [$msg]"
|
||||
n=1
|
||||
while [ $n -le $ttyn ]; do
|
||||
kbd_mode $kmode -C $ttydev$n
|
||||
: $(( n += 1 ))
|
||||
done
|
||||
eend 0
|
||||
|
||||
ebegin "Loading key mappings [$keymap]"
|
||||
loadkeys -q $wkeys $keymap $extended_keymaps
|
||||
eend $? "Error loading key mappings" || return $?
|
||||
|
||||
if yesno $fix_euro; then
|
||||
ebegin "Fixing font for euro symbol"
|
||||
# Fix some fonts displaying the Euro, #173528.
|
||||
echo "altgr keycode 18 = U+20AC" | loadkeys -q -
|
||||
eend $?
|
||||
fi
|
||||
|
||||
# Save the keymapping for use immediately at boot
|
||||
if checkpath -W "$RC_LIBEXECDIR"; then
|
||||
mkdir -p "$RC_LIBEXECDIR"/console
|
||||
dumpkeys >"$RC_LIBEXECDIR"/console/keymap
|
||||
fi
|
||||
}
|
||||
27
init.d/killprocs.in
Normal file
27
init.d/killprocs.in
Normal file
@@ -0,0 +1,27 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Kill all processes so we can unmount disks cleanly."
|
||||
|
||||
depend()
|
||||
{
|
||||
keyword -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Terminating remaining processes"
|
||||
kill_all 15 ${killall5_opts}
|
||||
eend 0
|
||||
ebegin "Killing remaining processes"
|
||||
kill_all 9 ${killall5_opts}
|
||||
eend 0
|
||||
}
|
||||
93
init.d/local.in
Normal file
93
init.d/local.in
Normal file
@@ -0,0 +1,93 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Executes user programs in @SYSCONFDIR@/local.d"
|
||||
|
||||
depend()
|
||||
{
|
||||
after *
|
||||
keyword -timeout
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Starting local"
|
||||
|
||||
local file has_errors=0 redirect retval
|
||||
yesno $rc_verbose || redirect='> /dev/null 2>&1'
|
||||
eindent
|
||||
for file in @SYSCONFDIR@/local.d/*.start; do
|
||||
if [ -x "${file}" ]; then
|
||||
vebegin "Executing \"${file}\""
|
||||
eval "${file}" $redirect
|
||||
retval=$?
|
||||
if [ ${retval} -ne 0 ]; then
|
||||
has_errors=1
|
||||
fi
|
||||
veend ${retval} "Execution of \"${file}\" failed."
|
||||
fi
|
||||
done
|
||||
eoutdent
|
||||
|
||||
if command -v local_start >/dev/null 2>&1; then
|
||||
ewarn "\"@SYSCONFDIR@/conf.d/local\" should be removed."
|
||||
ewarn "Please move the code from the local_start function"
|
||||
ewarn "to executable scripts with an .start extension"
|
||||
ewarn "in \"@SYSCONFDIR@/local.d\""
|
||||
local_start
|
||||
fi
|
||||
|
||||
eend ${has_errors}
|
||||
|
||||
# We have to end with a zero exit code, because a failed execution
|
||||
# of an executable @SYSCONFDIR@/local.d/*.start file shouldn't result in
|
||||
# marking the local service as failed. Otherwise we are unable to
|
||||
# execute any executable @SYSCONFDIR@/local.d/*.stop file, because a failed
|
||||
# marked service cannot be stopped (and the stop function would
|
||||
# actually call the executable @SYSCONFDIR@/local.d/*.stop file(s)).
|
||||
return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Stopping local"
|
||||
|
||||
local file has_errors=0 redirect retval
|
||||
yesno $rc_verbose || redirect='> /dev/null 2>&1'
|
||||
eindent
|
||||
for file in @SYSCONFDIR@/local.d/*.stop; do
|
||||
if [ -x "${file}" ]; then
|
||||
vebegin "Executing \"${file}\""
|
||||
eval "${file}" $redirect
|
||||
retval=$?
|
||||
if [ ${retval} -ne 0 ]; then
|
||||
has_errors=1
|
||||
fi
|
||||
veend ${retval} "Execution of \"${file}\" failed."
|
||||
fi
|
||||
done
|
||||
eoutdent
|
||||
|
||||
if command -v local_stop >/dev/null 2>&1; then
|
||||
ewarn "\"@SYSCONFDIR@/conf.d/local\" should be removed."
|
||||
ewarn "Please move the code from the local_stop function"
|
||||
ewarn "to executable scripts with an .stop extension"
|
||||
ewarn "in \"@SYSCONFDIR@/local.d\""
|
||||
local_stop
|
||||
fi
|
||||
|
||||
eend ${has_errors}
|
||||
|
||||
# An executable @SYSCONFDIR@/local.d/*.stop file which failed with a
|
||||
# non-zero exit status is not a reason to mark this service
|
||||
# as failed, therefore we have to end with a zero exit code.
|
||||
return 0
|
||||
}
|
||||
133
init.d/localmount.in
Normal file
133
init.d/localmount.in
Normal file
@@ -0,0 +1,133 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Mounts disks and swap according to /etc/fstab."
|
||||
|
||||
depend()
|
||||
{
|
||||
need fsck
|
||||
use lvm modules root
|
||||
after clock lvm modules root
|
||||
keyword -docker -jail -lxc -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
# Mount local filesystems in /etc/fstab.
|
||||
# The types variable must start with no, and must be a type
|
||||
local critical= types="noproc" x= no_netdev= rc=
|
||||
for x in $net_fs_list $extra_net_fs_list; do
|
||||
types="${types},${x}"
|
||||
done
|
||||
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
no_netdev="-O no_netdev"
|
||||
if mountinfo -q /usr; then
|
||||
touch "$RC_SVCDIR"/usr_premounted
|
||||
fi
|
||||
fi
|
||||
ebegin "Mounting local filesystems"
|
||||
mount -at "$types" $no_netdev
|
||||
eend $? "Some local filesystem failed to mount"
|
||||
rc=$?
|
||||
if [ -z "$critical_mounts" ]; then
|
||||
rc=0
|
||||
else
|
||||
for x in ${critical_mounts}; do
|
||||
fstabinfo -q $x || continue
|
||||
if ! mountinfo -q $x; then
|
||||
critical=x
|
||||
eerror "Failed to mount $x"
|
||||
fi
|
||||
done
|
||||
[ -z "$critical" ] && rc=0
|
||||
fi
|
||||
return $rc
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
yesno $RC_GOINGDOWN || return 0
|
||||
# We never unmount / or /dev or $RC_SVCDIR
|
||||
|
||||
# Bug 381783
|
||||
local rc_svcdir=$(printf '%s\n' "$RC_SVCDIR" | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g')
|
||||
|
||||
local x= no_umounts_r="/|/dev|/dev/.*|${rc_svcdir}"
|
||||
no_umounts_r="${no_umounts_r}|/bin|/sbin|/lib(32|64)?|/libexec"
|
||||
# RC_NO_UMOUNTS is an env var that can be set by plugins
|
||||
local IFS="$IFS:"
|
||||
for x in $no_umounts $RC_NO_UMOUNTS; do
|
||||
no_umounts_r="$no_umounts_r|$x"
|
||||
done
|
||||
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
no_umounts_r="$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*"
|
||||
if [ -e "$rc_svcdir"/usr_premounted ]; then
|
||||
no_umounts_r="$no_umounts_r|/usr"
|
||||
fi
|
||||
fi
|
||||
no_umounts_r="^($no_umounts_r)$"
|
||||
|
||||
# Flush all pending disk writes now
|
||||
sync
|
||||
|
||||
. "$RC_LIBEXECDIR"/sh/rc-mount.sh
|
||||
|
||||
if [ "$RC_UNAME" = Linux ] && [ -d /sys/fs/aufs ] ; then
|
||||
#if / is aufs we remount it noxino during shutdown
|
||||
if mountinfo -q -f '^aufs$' / ; then
|
||||
mount -o remount,noxino,rw /
|
||||
sync
|
||||
fi
|
||||
|
||||
local aufs_branch aufs_mount_point aufs_si_id aufs_br_id branches
|
||||
for aufs_si_dir in /sys/fs/aufs/si*; do
|
||||
[ -d "${aufs_si_dir}" ] || continue
|
||||
aufs_si_id="si=${aufs_si_dir#/sys/fs/aufs/si_}"
|
||||
aufs_mount_point="$(mountinfo -o ${aufs_si_id})"
|
||||
branches="$aufs_si_dir/br[0-9] $aufs_si_dir/br[0-9][0-9] $aufs_si_dir/br[0-9][0-9][0-9]"
|
||||
for x in $branches; do
|
||||
[ -e "${x}" ] || continue
|
||||
aufs_branch=$(sed 's/=.*//g' $x)
|
||||
eindent
|
||||
if ! mount -o "remount,del:$aufs_branch" "$aufs_mount_point" > /dev/null 2>&1; then
|
||||
ewarn "Failed to remove branch $aufs_branch from aufs" \
|
||||
"$aufs_mount_point"
|
||||
fi
|
||||
eoutdent
|
||||
sync
|
||||
done
|
||||
done
|
||||
fi
|
||||
|
||||
# Umount loop devices
|
||||
einfo "Unmounting loop devices"
|
||||
eindent
|
||||
do_unmount "umount -d" --skip-point-regex "$no_umounts_r" \
|
||||
--node-regex "^/dev/loop"
|
||||
eoutdent
|
||||
|
||||
# Now everything else, except network filesystems as the
|
||||
# network should be down by this point.
|
||||
einfo "Unmounting filesystems"
|
||||
eindent
|
||||
local fs=
|
||||
for x in $net_fs_list $extra_net_fs_list; do
|
||||
fs="$fs${fs:+|}$x"
|
||||
done
|
||||
[ -n "$fs" ] && fs="^($fs)$"
|
||||
do_unmount umount --skip-point-regex "$no_umounts_r" \
|
||||
"${fs:+--skip-fstype-regex}" $fs --nonetdev
|
||||
eoutdent
|
||||
|
||||
return 0
|
||||
}
|
||||
35
init.d/loopback.in
Normal file
35
init.d/loopback.in
Normal file
@@ -0,0 +1,35 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2013-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Configures the loopback interface."
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
keyword -jail -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
ebegin "Bringing up network interface lo"
|
||||
if command -v ip > /dev/null 2>&1; then
|
||||
ip addr add 127.0.0.1/8 dev lo brd +
|
||||
ip link set lo up
|
||||
else
|
||||
ifconfig lo 127.0.0.1 netmask 255.0.0.0
|
||||
fi
|
||||
else
|
||||
ebegin "Bringing up network interface lo0"
|
||||
ifconfig lo0 127.0.0.1 netmask 255.0.0.0
|
||||
fi
|
||||
eend $?
|
||||
}
|
||||
54
init.d/mixer.in
Normal file
54
init.d/mixer.in
Normal file
@@ -0,0 +1,54 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
extra_commands="restore"
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
restore()
|
||||
{
|
||||
local mixer= retval=0
|
||||
ebegin "Restoring mixer settings"
|
||||
eindent
|
||||
for mixer in /dev/mixer*; do
|
||||
if [ -r "/var/db/${mixer#/dev/}-state" ]; then
|
||||
vebegin "$mixer"
|
||||
mixer -f "$mixer" \
|
||||
$(cat "/var/db/${mixer#/dev/}-state") >/dev/null
|
||||
veend $?
|
||||
: $(( retval += $? ))
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
restore
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
local mixer= retval=0
|
||||
ebegin "Saving mixer settings"
|
||||
eindent
|
||||
for mixer in /dev/mixer*; do
|
||||
vebegin "$mixer"
|
||||
mixer -f "$mixer" -s >/var/db/"${mixer#/dev/}"-state
|
||||
veend $?
|
||||
: $(( retval += $? ))
|
||||
done
|
||||
eoutdent
|
||||
eend $retval
|
||||
}
|
||||
72
init.d/modules-load.in
Normal file
72
init.d/modules-load.in
Normal file
@@ -0,0 +1,72 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2016 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Loads a list of modules from systemd-compatible locations."
|
||||
|
||||
depend()
|
||||
{
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
find_modfiles()
|
||||
{
|
||||
local dirs="/usr/lib/modules-load.d /run/modules-load.d /etc/modules-load.d"
|
||||
local basenames files fn x y
|
||||
for x in $dirs; do
|
||||
[ ! -d $x ] && continue
|
||||
for y in $x/*.conf; do
|
||||
[ -f $y ] && basenames="${basenames}\n${y##*/}"
|
||||
done
|
||||
done
|
||||
basenames=$(printf "$basenames" | sort -u)
|
||||
for x in $basenames; do
|
||||
for y in $dirs; do
|
||||
[ -r $y/$x ] &&
|
||||
fn=$y/$x
|
||||
done
|
||||
files="$files $fn"
|
||||
done
|
||||
echo $files
|
||||
}
|
||||
|
||||
load_modules()
|
||||
{
|
||||
local file m modules rc x
|
||||
file=$1
|
||||
[ -z "$file" ] && return 0
|
||||
while read m x; do
|
||||
case $m in
|
||||
\;*) continue ;;
|
||||
\#*) continue ;;
|
||||
*) modules="$modules $m"
|
||||
;;
|
||||
esac
|
||||
done < $file
|
||||
for x in $modules; do
|
||||
ebegin "Loading module $x"
|
||||
case "$RC_UNAME" in
|
||||
FreeBSD) kldload "$x"; rc=$? ;;
|
||||
Linux) modprobe --use-blacklist -q "$x"; rc=$? ;;
|
||||
*) ;;
|
||||
esac
|
||||
eend $rc "Failed to load $x"
|
||||
done
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local x
|
||||
files=$(find_modfiles)
|
||||
for x in $files; do
|
||||
load_modules $x
|
||||
done
|
||||
return 0
|
||||
}
|
||||
95
init.d/modules.in
Normal file
95
init.d/modules.in
Normal file
@@ -0,0 +1,95 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Loads a user defined list of kernel modules."
|
||||
|
||||
modules+=$(
|
||||
for _modules in $(ls /etc/modules.d); do
|
||||
cat /etc/modules.d/$_modules
|
||||
done
|
||||
unset _modules
|
||||
)
|
||||
|
||||
depend()
|
||||
{
|
||||
use isapnp
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
FreeBSD_modules()
|
||||
{
|
||||
local cnt=0 x
|
||||
for x in $modules; do
|
||||
ebegin "Loading module $x"
|
||||
kldload "$x"
|
||||
eend $? "Failed to load $x" && : $(( cnt += 1 ))
|
||||
done
|
||||
einfo "Autoloaded $cnt module(s)"
|
||||
}
|
||||
|
||||
Linux_modules()
|
||||
{
|
||||
# Should not fail if kernel does not have module
|
||||
# support compiled in ...
|
||||
[ ! -f /proc/modules ] && return 0
|
||||
|
||||
local KV x y kv_variant_list
|
||||
KV=$(uname -r)
|
||||
# full $KV
|
||||
kv_variant_list="${KV}"
|
||||
# remove any KV_EXTRA options to just get the full version
|
||||
x=${KV%%-*}
|
||||
# now slowly strip them
|
||||
while [ -n "$x" ] && [ "$x" != "$y" ]; do
|
||||
kv_variant_list="${kv_variant_list} $x"
|
||||
y=$x
|
||||
x=${x%.*}
|
||||
done
|
||||
|
||||
local list= x= xx= y= args= mpargs= a=
|
||||
for x in $kv_variant_list ; do
|
||||
eval list=\$modules_$(shell_var "$x")
|
||||
[ -n "$list" ] && break
|
||||
done
|
||||
[ -z "$list" ] && list=$modules
|
||||
|
||||
[ -n "$list" ] && ebegin "Loading kernel modules"
|
||||
for x in $list; do
|
||||
a=${x#*:}
|
||||
if [ "$a" = "$x" ]; then
|
||||
unset mpargs
|
||||
else
|
||||
x=${x%%:*}
|
||||
mpargs="-o $a"
|
||||
fi
|
||||
aa=$(shell_var "$a")
|
||||
xx=$(shell_var "$x")
|
||||
for y in $kv_variant_list ; do
|
||||
eval args=\$module_${aa}_args_$(shell_var "$y")
|
||||
[ -n "${args}" ] && break
|
||||
eval args=\$module_${xx}_args_$(shell_var "$y")
|
||||
[ -n "${args}" ] && break
|
||||
done
|
||||
[ -z "$args" ] && eval args=\$module_${aa}_args
|
||||
[ -z "$args" ] && eval args=\$module_${xx}_args
|
||||
eval modprobe --use-blacklist --verbose "$mpargs" "$x" "$args"
|
||||
done
|
||||
[ -n "$list" ] && eend
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
case "$RC_UNAME" in
|
||||
FreeBSD|Linux) ${RC_UNAME}_modules ;;
|
||||
*) ;;
|
||||
esac
|
||||
return 0
|
||||
}
|
||||
59
init.d/mount-ro.in
Normal file
59
init.d/mount-ro.in
Normal file
@@ -0,0 +1,59 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Re-mount filesytems read-only for a clean reboot."
|
||||
|
||||
depend()
|
||||
{
|
||||
after killprocs savecache
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local ret=0
|
||||
|
||||
# Flush all pending disk writes now
|
||||
sync
|
||||
|
||||
ebegin "Remounting remaining filesystems read-only"
|
||||
# We need the do_unmount function
|
||||
. "$RC_LIBEXECDIR"/sh/rc-mount.sh
|
||||
eindent
|
||||
|
||||
# Bug 381783
|
||||
local rc_svcdir=$(echo $RC_SVCDIR | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g')
|
||||
|
||||
local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|/run|${rc_svcdir}" x= fs=
|
||||
m="$m|/bin|/sbin|/lib(32|64)?|/libexec"
|
||||
if [ -e "$rc_svcdir"/usr_premounted ]; then
|
||||
m="$m|/usr"
|
||||
fi
|
||||
# RC_NO_UMOUNTS is an env var that can be set by plugins
|
||||
local IFS="$IFS:"
|
||||
for x in $no_umounts $RC_NO_UMOUNTS; do
|
||||
m="$m|$x"
|
||||
done
|
||||
m="^($m)$"
|
||||
fs=
|
||||
for x in $net_fs_list $extra_net_fs_list; do
|
||||
fs="$fs${fs:+|}$x"
|
||||
done
|
||||
[ -n "$fs" ] && fs="^($fs)$"
|
||||
do_unmount "umount -r" \
|
||||
--skip-point-regex "$m" \
|
||||
"${fs:+--skip-fstype-regex}" $fs --nonetdev
|
||||
ret=$?
|
||||
|
||||
eoutdent
|
||||
|
||||
eend $ret
|
||||
}
|
||||
69
init.d/moused.in
Normal file
69
init.d/moused.in
Normal file
@@ -0,0 +1,69 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
mouse=${RC_SVCNAME##*.}
|
||||
if [ -n "$mouse" -a "$mouse" != "moused" ]; then
|
||||
moused_device=/dev/"$mouse"
|
||||
pidfile=/var/run/moused-"$mouse".pid
|
||||
else
|
||||
pidfile=/var/run/moused.pid
|
||||
fi
|
||||
name="Console Mouse Daemon"
|
||||
[ -n "$moused_device" ] && name="$name ($moused_device)"
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
after bootmisc
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Starting $name"
|
||||
|
||||
if [ -z "$moused_device" ]; then
|
||||
local dev=
|
||||
for dev in /dev/psm[0-9]* /dev/ums[0-9]*; do
|
||||
[ -c "$dev" ] || continue
|
||||
[ -e /var/run/moused-"${dev##*/}".pid ] && continue
|
||||
moused_device=$dev
|
||||
eindent
|
||||
einfo "Using mouse on $moused_device"
|
||||
eoutdent
|
||||
break
|
||||
done
|
||||
fi
|
||||
|
||||
if [ -z "$moused_device" ]; then
|
||||
eend 1 "No mouse device found"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local args=
|
||||
eval args=\$moused_args_${moused_device##*/}
|
||||
[ -z "$args" ] && args=$moused_args
|
||||
|
||||
start-stop-daemon --start --exec /usr/sbin/moused \
|
||||
--pidfile "$pidfile" \
|
||||
-- $args -p "$moused_device" -I "$pidfile"
|
||||
local retval=$?
|
||||
|
||||
if [ $retval = 0 ]; then
|
||||
local ttyv=
|
||||
for ttyv in /dev/ttyv*; do
|
||||
vidcontrol < "$ttyv" -m on
|
||||
: $(( retval += $? ))
|
||||
done
|
||||
fi
|
||||
|
||||
eend $retval "Failed to start moused"
|
||||
}
|
||||
47
init.d/mtab.in
Normal file
47
init.d/mtab.in
Normal file
@@ -0,0 +1,47 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Update /etc/mtab to match what the kernel knows about"
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
need root
|
||||
keyword -prefix -chroot+unshare
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local rc=0
|
||||
ebegin "Updating /etc/mtab"
|
||||
if ! checkpath -W /etc; then
|
||||
rc=1
|
||||
elif ! yesno ${mtab_is_file:-no}; then
|
||||
[ ! -L /etc/mtab ] && [ -f /etc/mtab ] &&
|
||||
ewarn "Removing /etc/mtab file"
|
||||
einfo "Creating mtab symbolic link"
|
||||
ln -snf /proc/self/mounts /etc/mtab
|
||||
else
|
||||
[ -L /etc/mtab ] && ewarn "Removing /etc/mtab symbolic link"
|
||||
rm -f /etc/mtab
|
||||
einfo "Creating mtab file"
|
||||
# With / as tmpfs we cannot umount -at tmpfs in localmount as that
|
||||
# makes / readonly and dismounts all tmpfs even if in use which is
|
||||
# not good. Luckily, umount uses /etc/mtab instead of /proc/mounts
|
||||
# which allows this hack to work.
|
||||
grep -v "^[! ]* / tmpfs " /proc/mounts > /etc/mtab
|
||||
|
||||
# Remove stale backups
|
||||
rm -f /etc/mtab~ /etc/mtab~~
|
||||
fi
|
||||
eend $rc "/etc is not writable; unable to create /etc/mtab"
|
||||
return 0
|
||||
}
|
||||
69
init.d/net-online.in
Normal file
69
init.d/net-online.in
Normal file
@@ -0,0 +1,69 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Delays until the network is online or a specific timeout"
|
||||
|
||||
depend()
|
||||
{
|
||||
after modules
|
||||
need sysfs
|
||||
provide network-online
|
||||
keyword -docker -jail -lxc -openvz -prefix -chroot+unshare -uml -vserver
|
||||
}
|
||||
|
||||
get_interfaces()
|
||||
{
|
||||
local ifname iftype
|
||||
for ifname in /sys/class/net/*; do
|
||||
read iftype < ${ifname}/type
|
||||
[ "$iftype" = "1" ] && printf "%s " ${ifname##*/}
|
||||
done
|
||||
}
|
||||
|
||||
start ()
|
||||
{
|
||||
local carriers configured dev gateway ifcount infinite
|
||||
local rc state x
|
||||
|
||||
ebegin "Checking to see if the network is online"
|
||||
rc=0
|
||||
interfaces=${interfaces:-$(get_interfaces)}
|
||||
timeout=${timeout:-120}
|
||||
[ $timeout -eq 0 ] && infinite=true || infinite=false
|
||||
while $infinite || [ $timeout -gt 0 ]; do
|
||||
carriers=0
|
||||
configured=0
|
||||
ifcount=0
|
||||
for dev in ${interfaces}; do
|
||||
: $((ifcount += 1))
|
||||
read x < /sys/class/net/$dev/carrier
|
||||
[ $x -eq 1 ] && : $((carriers += 1))
|
||||
read x < /sys/class/net/$dev/operstate
|
||||
[ "$x" = up ] && : $((configured += 1))
|
||||
done
|
||||
[ $configured -eq $ifcount ] && [ $carriers -ge 1 ] && break
|
||||
sleep 1
|
||||
: $((timeout -= 1))
|
||||
done
|
||||
! $infinite && [ $timeout -eq 0 ] && rc=1
|
||||
include_ping_test=${include_ping_test:-${ping_default_gateway}}
|
||||
if [ -n "${ping_default_gateway}" ]; then
|
||||
ewarn "ping_default_gateway is deprecated, please use include_ping_test"
|
||||
fi
|
||||
if [ $rc -eq 0 ] && yesno ${include_ping_test:-no}; then
|
||||
ping_test_host="${ping_test_host:-hyperbola.info}"
|
||||
if [ -n "$ping_test_host" ]; then
|
||||
ping -c 1 $ping_test_host > /dev/null 2>&1
|
||||
rc=$?
|
||||
fi
|
||||
fi
|
||||
eend $rc "The network is offline"
|
||||
}
|
||||
91
init.d/netmount.in
Normal file
91
init.d/netmount.in
Normal file
@@ -0,0 +1,91 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Mounts network shares according to /etc/fstab."
|
||||
|
||||
depend()
|
||||
{
|
||||
local opts mywant=""
|
||||
for opts in $(fstabinfo -o -t nfs,nfs4); do
|
||||
case $opts in
|
||||
noauto) ;;
|
||||
*) mywant="$mywant nfsclient"; break ;;
|
||||
esac
|
||||
done
|
||||
after root
|
||||
config /etc/fstab
|
||||
want $mywant
|
||||
use afc-client amd openvpn
|
||||
use dns
|
||||
use root
|
||||
keyword -docker -jail -lxc -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local x= fs= rc=
|
||||
for x in $net_fs_list $extra_net_fs_list; do
|
||||
fs="$fs${fs:+,}$x"
|
||||
done
|
||||
|
||||
ebegin "Mounting network filesystems"
|
||||
mount -at $fs
|
||||
rc=$?
|
||||
if [ "$RC_UNAME" = Linux ] && [ $rc = 0 ]; then
|
||||
mount -a -O _netdev
|
||||
rc=$?
|
||||
fi
|
||||
ewend $rc "Could not mount all network filesystems"
|
||||
if [ -z "$critical_mounts" ]; then
|
||||
rc=0
|
||||
else
|
||||
for x in ${critical_mounts}; do
|
||||
fstabinfo -q $x || continue
|
||||
if ! mountinfo -q $x; then
|
||||
critical=x
|
||||
eerror "Failed to mount $x"
|
||||
fi
|
||||
done
|
||||
[ -z "$critical" ] && rc=0
|
||||
fi
|
||||
return $rc
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
local x= fs=
|
||||
|
||||
ebegin "Unmounting network filesystems"
|
||||
. "$RC_LIBEXECDIR"/sh/rc-mount.sh
|
||||
|
||||
for x in $net_fs_list $extra_net_fs_list; do
|
||||
fs="$fs${fs:+,}$x"
|
||||
done
|
||||
if [ -n "$fs" ]; then
|
||||
umount -at $fs || eerror "Failed to simply unmount filesystems"
|
||||
fi
|
||||
|
||||
eindent
|
||||
fs=
|
||||
for x in $net_fs_list $extra_net_fs_list; do
|
||||
fs="$fs${fs:+|}$x"
|
||||
done
|
||||
[ -n "$fs" ] && fs="^($fs)$"
|
||||
do_unmount umount ${fs:+--fstype-regex} $fs --netdev
|
||||
retval=$?
|
||||
|
||||
eoutdent
|
||||
if [ "$RC_UNAME" = Linux ] && [ $retval = 0 ]; then
|
||||
umount -a -O _netdev
|
||||
retval=$?
|
||||
fi
|
||||
eend $retval "Failed to unmount network filesystems"
|
||||
}
|
||||
360
init.d/network.in
Normal file
360
init.d/network.in
Normal file
@@ -0,0 +1,360 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2009-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
# This script was inspired by the equivalent rc.d network from NetBSD.
|
||||
|
||||
description="Configures network interfaces."
|
||||
__nl="
|
||||
"
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
after bootmisc clock
|
||||
if [ -n "$(interfaces)" ]; then
|
||||
provide net
|
||||
fi
|
||||
keyword -jail -prefix -vserver
|
||||
}
|
||||
|
||||
uniqify()
|
||||
{
|
||||
local result= i=
|
||||
for i; do
|
||||
case " $result " in
|
||||
*" $i "*);;
|
||||
*) result="$result $i";;
|
||||
esac
|
||||
done
|
||||
echo "${result# *}"
|
||||
}
|
||||
|
||||
reverse()
|
||||
{
|
||||
local result= i=
|
||||
for i; do
|
||||
result="$i $result"
|
||||
done
|
||||
echo "${result# *}"
|
||||
}
|
||||
|
||||
sys_interfaces()
|
||||
{
|
||||
case "$RC_UNAME" in
|
||||
Linux)
|
||||
local w= rest= i= cmd=$1
|
||||
while read w rest; do
|
||||
i=${w%%:*}
|
||||
case "$i" in
|
||||
"$w") continue ;;
|
||||
lo|lo0) continue ;;
|
||||
*) ;;
|
||||
esac
|
||||
if [ "$cmd" = u ]; then
|
||||
ifconfig "$i" | grep -q "[ ]*UP" || continue
|
||||
fi
|
||||
printf "%s " "$i"
|
||||
done </proc/net/dev
|
||||
;;
|
||||
*)
|
||||
ifconfig -l$1
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
tentative()
|
||||
{
|
||||
local inet= address= rest=
|
||||
|
||||
case "$RC_UNAME" in
|
||||
Linux)
|
||||
[ -x /sbin/ip ] || [ -x /bin/ip ] || return 1
|
||||
[ -n "$(ip -f inet6 addr show tentative)" ]
|
||||
;;
|
||||
*)
|
||||
local inet= address= rest=
|
||||
LC_ALL=C ifconfig -a | while read inet address rest; do
|
||||
case "${inet}" in
|
||||
inet6)
|
||||
case "${rest}" in
|
||||
*" "tentative*) return 2;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
done
|
||||
[ $? = 2 ]
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
|
||||
auto_interfaces()
|
||||
{
|
||||
local ifs= c= f=
|
||||
|
||||
case "$RC_UNAME" in
|
||||
NetBSD)
|
||||
for c in $(ifconfig -C 2>/dev/null); do
|
||||
for f in /etc/ifconfig.${c}[0-9]*; do
|
||||
[ -f "$f" ] && printf "%s" "$f{##*.} "
|
||||
done
|
||||
done
|
||||
;;
|
||||
*)
|
||||
for f in /etc/ifconfig.*; do
|
||||
[ -f "$f" ] && printf "%s" "${f##*.} "
|
||||
done
|
||||
for f in /etc/ip.*; do
|
||||
[ -f "$f" ] && printf "%s" "${f##*.} "
|
||||
done
|
||||
;;
|
||||
esac
|
||||
echo
|
||||
}
|
||||
|
||||
interfaces()
|
||||
{
|
||||
uniqify $(sys_interfaces "$@") $interfaces $(auto_interfaces)
|
||||
}
|
||||
|
||||
dumpargs()
|
||||
{
|
||||
local f="$1"
|
||||
|
||||
shift
|
||||
case "$@" in
|
||||
'') [ -f "$f" ] && cat "$f";;
|
||||
*"$__nl"*) echo "$@";;
|
||||
*)
|
||||
(
|
||||
set -o noglob
|
||||
IFS=';'; set -- $@
|
||||
IFS="$__nl"; echo "$*"
|
||||
);;
|
||||
esac
|
||||
}
|
||||
|
||||
intup=false
|
||||
runip()
|
||||
{
|
||||
local int="$1" err=
|
||||
shift
|
||||
|
||||
# Ensure we have a valid broadcast address
|
||||
case "$@" in
|
||||
*" broadcast "*|*" brd "*) ;;
|
||||
*:*) ;; # Ignore IPv6
|
||||
*) set -- "$@" brd +;;
|
||||
esac
|
||||
|
||||
err=$(LC_ALL=C ip address add "$@" dev "$int" 2>&1)
|
||||
if [ -z "$err" ]; then
|
||||
# ip does not bring up the interface when adding addresses
|
||||
if ! $intup; then
|
||||
ip link set "$int" up
|
||||
intup=true
|
||||
fi
|
||||
return 0
|
||||
fi
|
||||
if [ "$err" = "RTNETLINK answers: File exists" ]; then
|
||||
ip address del "$@" dev "$int" 2>/dev/null
|
||||
fi
|
||||
# Localise the error
|
||||
ip address add "$@" dev "$int"
|
||||
}
|
||||
|
||||
routeflush()
|
||||
{
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
if [ -x /sbin/ip ] || [ -x /bin/ip ]; then
|
||||
ip route flush scope global
|
||||
ip route delete default 2>/dev/null
|
||||
else
|
||||
# Sadly we also delete some link routes, but
|
||||
# this cannot be helped
|
||||
local dest= gate= net= flags= rest=
|
||||
route -n | while read dest gate net flags rest; do
|
||||
[ -z "$net" ] && continue
|
||||
case "$dest" in
|
||||
[0-9]*) ;;
|
||||
*) continue;;
|
||||
esac
|
||||
local xtra= netmask="netmask $net"
|
||||
case "$flags" in
|
||||
U) continue;;
|
||||
*H*) flags=-host; netmask=;;
|
||||
*!*) flags=-net; xtra=reject;;
|
||||
*) flags=-net;;
|
||||
esac
|
||||
route del $flags $dest $netmask $xtra
|
||||
done
|
||||
# Erase any default dev eth0 routes
|
||||
route del default 2>/dev/null
|
||||
fi
|
||||
else
|
||||
route -qn flush
|
||||
fi
|
||||
}
|
||||
|
||||
runargs()
|
||||
{
|
||||
dumpargs "$@" | while read -r args; do
|
||||
case "$args" in
|
||||
''|"#"*) ;;
|
||||
*)
|
||||
(
|
||||
eval vebegin "${args#*!}"
|
||||
eval "${args#*!}"
|
||||
veend $?
|
||||
);;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local cr=0 r= int= intv= cmd= args= upcmd=
|
||||
|
||||
if [ -z "$domainname" -a -s /etc/defaultdomain ]; then
|
||||
domainname=$(cat /etc/defaultdomain)
|
||||
fi
|
||||
if [ -n "$domainname" ]; then
|
||||
ebegin "Setting NIS domainname: $domainname"
|
||||
domainname "$domainname"
|
||||
eend $?
|
||||
fi
|
||||
|
||||
einfo "Starting network"
|
||||
routeflush
|
||||
eindent
|
||||
for int in $(interfaces); do
|
||||
local func= cf=
|
||||
intv=$(shell_var "$int")
|
||||
eval upcmd=\$ifup_$intv
|
||||
for func in ip ifconfig; do
|
||||
eval cmd=\$${func}_$intv
|
||||
if [ -n "$cmd" -o -f /etc/"$func.$int" ]; then
|
||||
cf=/etc/"$func.$int"
|
||||
break
|
||||
fi
|
||||
done
|
||||
[ -n "$cf" -o -n "$upcmd" -o \
|
||||
-f /etc/ifup."$int" -o -f "$cf" ] || continue
|
||||
veinfo "$int"
|
||||
case "$func" in
|
||||
ip) func=runip; intup=false;;
|
||||
esac
|
||||
eindent
|
||||
runargs /etc/ifup."$int" "$upcmd"
|
||||
r=0
|
||||
dumpargs "$cf" "$cmd" | while read -r args; do
|
||||
case "$args" in
|
||||
''|"#"*) ;;
|
||||
"!"*)
|
||||
(
|
||||
eval vebegin "${args#*!}"
|
||||
eval "${args#*!}"
|
||||
veend $?
|
||||
);;
|
||||
*)
|
||||
(
|
||||
set -o noglob
|
||||
eval set -- "$args"
|
||||
vebegin "$@"
|
||||
$func "$int" "$@"
|
||||
veend $?
|
||||
);;
|
||||
esac
|
||||
done
|
||||
eoutdent
|
||||
done
|
||||
eoutdent
|
||||
eend $cr
|
||||
|
||||
# Wait for any inet6 tentative addresses
|
||||
r=5
|
||||
while [ $r -gt 0 ]; do
|
||||
tentative || break
|
||||
[ $r = 5 ] && vebegin "Waiting for tentative addresses"
|
||||
sleep 1
|
||||
: $(( r -= 1 ))
|
||||
done
|
||||
if [ $r != 5 ]; then
|
||||
[ $r != 0 ]
|
||||
veend $?
|
||||
fi
|
||||
|
||||
if [ -n "$defaultroute" ]; then
|
||||
ebegin "Setting default route $defaultroute"
|
||||
route add default $defaultroute
|
||||
eend $?
|
||||
elif [ -n "$defaultiproute" ]; then
|
||||
ebegin "Setting default route $defaultiproute"
|
||||
ip route add default $defaultiproute
|
||||
eend $?
|
||||
fi
|
||||
|
||||
if [ -n "$defaultroute6" ]; then
|
||||
ebegin "Setting default route $defaultroute6"
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
routecmd="route -A inet6 add"
|
||||
else
|
||||
routecmd="route -inet6 add"
|
||||
fi
|
||||
$routecmd default $defaultroute6
|
||||
eend $?
|
||||
elif [ -n "$defaultiproute6" ]; then
|
||||
ebegin "Setting default route $defaultiproute6"
|
||||
ip -f inet6 route add default $defaultiproute6
|
||||
eend $?
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
# Don't stop the network at shutdown.
|
||||
# We don't use the noshutdown keyword so that we are started again
|
||||
# correctly if we go back to multiuser.
|
||||
yesno ${keep_network:-YES} && yesno $RC_GOINGDOWN && return 0
|
||||
|
||||
local int= intv= cmd= downcmd= r=
|
||||
einfo "Stopping network"
|
||||
routeflush
|
||||
eindent
|
||||
for int in $(reverse $(interfaces u)); do
|
||||
case "$int" in
|
||||
lo|lo0) continue ;;
|
||||
*) ;;
|
||||
esac
|
||||
intv=$(shell_var "$int")
|
||||
eval downcmd=\$ifdown_$intv
|
||||
eval cmd=\$ip_$intv
|
||||
[ -z "$cmd" ] && eval cmd=\$ifconfig_$intv
|
||||
if [ -n "$cmd" -o -f /etc/ip."$int" -o \
|
||||
-f /etc/ifconfig."$int" -o \
|
||||
-n "$downcmd" -o -f /etc/ifdown."$int" ];
|
||||
then
|
||||
veinfo "$int"
|
||||
runargs /etc/ifdown."$int" "$downcmd"
|
||||
if [ -x /sbin/ip ] || [ -x /bin/ip ]; then
|
||||
# We need to do this, otherwise we may
|
||||
# fail to add things correctly on restart
|
||||
ip address flush dev "$int" 2>/dev/null
|
||||
fi
|
||||
ifconfig "$int" down 2>/dev/null
|
||||
ifconfig "$int" destroy 2>/dev/null
|
||||
fi
|
||||
done
|
||||
eoutdent
|
||||
eend 0
|
||||
}
|
||||
26
init.d/newsyslog.in
Normal file
26
init.d/newsyslog.in
Normal file
@@ -0,0 +1,26 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
required_files="/etc/newsyslog.conf"
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
need localmount
|
||||
keyword -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Creating and/or trimming log files"
|
||||
newsyslog -s $newsyslog_args
|
||||
eend $?
|
||||
}
|
||||
29
init.d/nscd.in
Normal file
29
init.d/nscd.in
Normal file
@@ -0,0 +1,29 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/usr/sbin/nscd
|
||||
command_args=$nscd_args
|
||||
pidfile=/var/run/nscd.pid
|
||||
name="Name Service Cache Daemon"
|
||||
|
||||
extra_started_commands="flush"
|
||||
|
||||
depend() {
|
||||
need localmount
|
||||
use net dns ldap ypbind
|
||||
after bootmisc
|
||||
}
|
||||
|
||||
flush() {
|
||||
ebegin "Flushing $name"
|
||||
nscd -I all >/dev/null
|
||||
eend $?
|
||||
}
|
||||
49
init.d/numlock.in
Normal file
49
init.d/numlock.in
Normal file
@@ -0,0 +1,49 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Turns numlock on for the consoles."
|
||||
|
||||
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
_setleds()
|
||||
{
|
||||
[ -z "$1" ] && return 1
|
||||
|
||||
local dev=/dev/tty t= i=1 retval=0
|
||||
[ -d /dev/vc ] && dev=/dev/vc/
|
||||
|
||||
while [ $i -le $ttyn ]; do
|
||||
setleds -D "$1"num < $dev$i || retval=1
|
||||
: $(( i += 1 ))
|
||||
done
|
||||
|
||||
return $retval
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Enabling numlock on ttys"
|
||||
_setleds +
|
||||
eend $? "Failed to enable numlock"
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Disabling numlock on ttys"
|
||||
_setleds -
|
||||
eend $? "Failed to disable numlock"
|
||||
}
|
||||
19
init.d/osclock.in
Normal file
19
init.d/osclock.in
Normal file
@@ -0,0 +1,19 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2014-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
# Can be used on OSs that take care of the clock.
|
||||
|
||||
description="Provides clock"
|
||||
|
||||
depend()
|
||||
{
|
||||
provide clock
|
||||
}
|
||||
66
init.d/pf.in
Normal file
66
init.d/pf.in
Normal file
@@ -0,0 +1,66 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
name="Packet Filter"
|
||||
: ${pf_conf:=${pf_rules:-/etc/pf.conf}}
|
||||
required_files=$pf_conf
|
||||
|
||||
extra_commands="checkconfig showstatus"
|
||||
extra_started_commands="reload"
|
||||
|
||||
depend() {
|
||||
need localmount
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Starting $name"
|
||||
if command -v kldload >/dev/null 2>&1; then
|
||||
kldload pf 2>/dev/null
|
||||
fi
|
||||
pfctl -q -F all
|
||||
pfctl -q -f "$pf_conf" $pf_args
|
||||
pfctl -q -e
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Stopping $name"
|
||||
pfctl -q -d
|
||||
eend $?
|
||||
}
|
||||
|
||||
checkconfig()
|
||||
{
|
||||
ebegin "Checking $name configuration"
|
||||
pfctl -n -f "$pf_conf"
|
||||
eend $?
|
||||
}
|
||||
|
||||
reload()
|
||||
{
|
||||
ebegin "Reloading $name rules."
|
||||
pfctl -q -n -f "$pf_conf" && \
|
||||
{
|
||||
# Flush everything but existing state entries that way when
|
||||
# rules are read in, it doesn't break established connections.
|
||||
pfctl -q -Fnat -Fqueue -Frules -FSources -Finfo -FTables -Fosfp
|
||||
pfctl -q -f "$pf_conf" $pf_args
|
||||
}
|
||||
eend $?
|
||||
}
|
||||
|
||||
showstatus()
|
||||
{
|
||||
pfctl -s info
|
||||
}
|
||||
42
init.d/powerd.in
Normal file
42
init.d/powerd.in
Normal file
@@ -0,0 +1,42 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/usr/sbin/powerd
|
||||
command_args=$powerd_args
|
||||
pidfile=/var/run/powerd.pid
|
||||
name="Power Control Daemon"
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
use logger
|
||||
after bootmisc
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start_pre()
|
||||
{
|
||||
if [ -n "$powerd_battery_mode" ]; then
|
||||
command_args="$command_args -b $powerd_battery_mode"
|
||||
fi
|
||||
if [ -n "${powerd_ac_mode}" ]; then
|
||||
command_args="$command_args -a $powerd_ac_mode"
|
||||
fi
|
||||
}
|
||||
|
||||
stop_post()
|
||||
{
|
||||
local level=$(sysctl -n dev.cpu.0.freq_levels |
|
||||
sed -e 's:/.*::')
|
||||
if [ -n "$level" ]; then
|
||||
sysctl dev.cpu.0.freq="$level" >/dev/null
|
||||
fi
|
||||
}
|
||||
30
init.d/rarpd.in
Normal file
30
init.d/rarpd.in
Normal file
@@ -0,0 +1,30 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/usr/sbin/rarpd
|
||||
command_args="-f $rarpd_args"
|
||||
pidfile=/var/run/rarpd.pid
|
||||
name="Reverse ARP Daemon"
|
||||
required_files=/etc/ethers
|
||||
|
||||
if [ -z "$rarpd_interface" ]; then
|
||||
command_args="$command_args -a"
|
||||
else
|
||||
command_args="$command_args $rarpd_interface"
|
||||
fi
|
||||
command_background=YES
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
after bootmisc
|
||||
need net
|
||||
}
|
||||
60
init.d/rc-enabled.in
Normal file
60
init.d/rc-enabled.in
Normal file
@@ -0,0 +1,60 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount net
|
||||
after *
|
||||
before local
|
||||
keyword -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Starting local rc services"
|
||||
local svc= enabled= retval=0 service= pkgdir=
|
||||
[ -n "@PKG_PREFIX@" ] && pkgdir="@PKG_PREFIX@/etc/rc.d/*"
|
||||
for svc in $(rcorder /etc/rc.d/* $pkgdir 2>/dev/null); do
|
||||
[ -x "$svc" ] || continue
|
||||
service=${svc##*/}
|
||||
|
||||
# Skip these services
|
||||
for s in cleartmp moused; do
|
||||
[ "$s" = "$service" ] && continue 2
|
||||
done
|
||||
|
||||
# If we have an init script for this service, continue
|
||||
rc-service --exists "$service" && continue
|
||||
|
||||
# Ensure that the users rc.conf will start us
|
||||
eval enabled=\$${svc##*/}_enable
|
||||
yesno $enabled || yesno ${svc##*/} || continue
|
||||
|
||||
# Good to go!
|
||||
"$svc" start && started="$started $svc"
|
||||
: $(( retval += $? ))
|
||||
done
|
||||
service_set_value started "$started"
|
||||
eend $retval "Some local rc services failed to start"
|
||||
return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Stopping local rc services"
|
||||
local svc= retval=0
|
||||
for svc in $(rcorder $(service_get_value started) 2>/dev/null | sort -r); do
|
||||
"$svc" stop
|
||||
: $(( retval += $? ))
|
||||
done
|
||||
eend $retval "Some local rc services failed to stop"
|
||||
return 0
|
||||
}
|
||||
61
init.d/root.in
Normal file
61
init.d/root.in
Normal file
@@ -0,0 +1,61 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Mount the root fs read/write"
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
need fsck
|
||||
keyword -docker -jail -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
case ",$(fstabinfo -o /)," in
|
||||
*,ro,*)
|
||||
;;
|
||||
*)
|
||||
# Check if the rootfs isn't already writable.
|
||||
if checkpath -W /; then
|
||||
rm -f /fastboot /forcefsck
|
||||
else
|
||||
ebegin "Remounting root filesystem read/write"
|
||||
case "$RC_UNAME" in
|
||||
Linux)
|
||||
mount -n -o remount,rw /
|
||||
;;
|
||||
*)
|
||||
mount -u -o rw /
|
||||
;;
|
||||
esac
|
||||
eend $? "Root filesystem could not be mounted read/write"
|
||||
if [ $? -eq 0 ]; then
|
||||
rm -f /fastboot /forcefsck
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
ebegin "Remounting filesystems"
|
||||
local mountpoint
|
||||
for mountpoint in $(fstabinfo); do
|
||||
case "${mountpoint}" in
|
||||
/)
|
||||
;;
|
||||
/*)
|
||||
mountinfo -q "${mountpoint}" && \
|
||||
fstabinfo --remount "${mountpoint}"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
eend 0
|
||||
}
|
||||
28
init.d/rpcbind.in
Normal file
28
init.d/rpcbind.in
Normal file
@@ -0,0 +1,28 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/usr/sbin/rpcbind
|
||||
command_args=$rpcbind_args
|
||||
name="RPC program number mapper"
|
||||
|
||||
depend()
|
||||
{
|
||||
provide rpc
|
||||
need localmount
|
||||
use net logger dns
|
||||
before inetd xinetd ntpd ntp-client
|
||||
}
|
||||
|
||||
stop_post()
|
||||
{
|
||||
# rpcbind returns too fast, so sleep for a second
|
||||
sleep 1
|
||||
}
|
||||
20
init.d/runsvdir.in
Normal file
20
init.d/runsvdir.in
Normal file
@@ -0,0 +1,20 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2016 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/usr/bin/runsvdir
|
||||
command_background=yes
|
||||
pidfile=/var/run/runsvdir.pid
|
||||
command_args="-P $RC_SVCDIR/sv 'log: ...........................................................................................................................................................................................................................................................................................................................................................................................................'"
|
||||
|
||||
start_pre()
|
||||
{
|
||||
checkpath -m 0755 -o root:root -d ${RC_SVCDIR}/sv
|
||||
}
|
||||
38
init.d/s6-svscan.in
Normal file
38
init.d/s6-svscan.in
Normal file
@@ -0,0 +1,38 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/bin/s6-svscan
|
||||
command_args="${RC_SVCDIR}"/s6-scan
|
||||
command_background=yes
|
||||
pidfile=/var/run/s6-svscan.pid
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
}
|
||||
|
||||
start_pre()
|
||||
{
|
||||
einfo "Creating s6 scan directory"
|
||||
checkpath -d -m 0755 "$RC_SVCDIR"/s6-scan
|
||||
return $?
|
||||
}
|
||||
|
||||
stop_post()
|
||||
{
|
||||
ebegin "Stopping any remaining s6 services"
|
||||
s6-svc -dx "${RC_SVCDIR}"/s6-scan/* 2>/dev/null || true
|
||||
eend $?
|
||||
|
||||
ebegin "Stopping any remaining s6 service loggers"
|
||||
s6-svc -dx "${RC_SVCDIR}"/s6-scan/*/log 2>/dev/null || true
|
||||
eend $?
|
||||
}
|
||||
66
init.d/savecache.in
Normal file
66
init.d/savecache.in
Normal file
@@ -0,0 +1,66 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Saves the caches OpenRC uses to non volatile storage"
|
||||
|
||||
start()
|
||||
{
|
||||
if [ -e "$RC_SVCDIR"/clock-skewed ]; then
|
||||
ewarn "Clock skew detected!"
|
||||
if ! yesno "${RC_GOINGDOWN}"; then
|
||||
eerror "Not saving deptree cache"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
if [ ! -d "$RC_LIBEXECDIR"/cache ]; then
|
||||
if ! checkpath -W "$RC_LIBEXECDIR"; then
|
||||
eerror "${RC_LIBEXECDIR} is not writable!"
|
||||
eerror "Unable to save dependency cache"
|
||||
if yesno "${RC_GOINGDOWN}"; then
|
||||
return 0
|
||||
fi
|
||||
return 1
|
||||
fi
|
||||
rm -rf "$RC_LIBEXECDIR"/cache
|
||||
if ! mkdir -p "$RC_LIBEXECDIR"/cache; then
|
||||
eerror "Unable to create $RC_LIBEXECDIR/cache"
|
||||
eerror "Unable to save dependency cache"
|
||||
if yesno "${RC_GOINGDOWN}"; then
|
||||
return 0
|
||||
fi
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
if ! checkpath -W "$RC_LIBEXECDIR"/cache; then
|
||||
eerror "${RC_LIBEXECDIR}/cache is not writable!"
|
||||
eerror "Unable to save dependency cache"
|
||||
if yesno "${RC_GOINGDOWN}"; then
|
||||
return 0
|
||||
fi
|
||||
return 1
|
||||
fi
|
||||
ebegin "Saving dependency cache"
|
||||
local rc=0 save=
|
||||
for x in shutdowntime softlevel rc.log; do
|
||||
[ -e "$RC_SVCDIR/$x" ] && save="$save $RC_SVCDIR/$x"
|
||||
done
|
||||
if [ -n "$save" ]; then
|
||||
cp -p $save "$RC_LIBEXECDIR"/cache
|
||||
rc=$?
|
||||
fi
|
||||
if yesno "${RC_GOINGDOWN}"; then
|
||||
if [ $rc -ne 0 ]; then
|
||||
eerror "Unable to save dependency cache"
|
||||
fi
|
||||
eend 0
|
||||
fi
|
||||
eend $rc "Unable to save dependency cache"
|
||||
}
|
||||
45
init.d/savecore.in
Normal file
45
init.d/savecore.in
Normal file
@@ -0,0 +1,45 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Saves a kernel dump."
|
||||
|
||||
depend()
|
||||
{
|
||||
need dumpon localmount
|
||||
after clock
|
||||
before encswap
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
: ${dump_dir:=/var/crash}
|
||||
if ! [ -d "$dump_dir" ]; then
|
||||
mkdir -p "$dump_dir"
|
||||
chmod 700 "$dump_dir"
|
||||
fi
|
||||
|
||||
if [ "$RC_UNAME" = FreeBSD ]; then
|
||||
# Don't quote ${dump_device}, so that if it's unset,
|
||||
# savecore will check on the partitions listed in fstab
|
||||
# without errors in the output
|
||||
savecore -C $dump_device >/dev/null
|
||||
else
|
||||
ls "$dump_dir"/bsd* > /dev/null 2>&1
|
||||
fi
|
||||
[ $? = 0 ] || return 0
|
||||
|
||||
local sopts="$dump_dir $dump_device"
|
||||
yesno $dump_compress && sopts="-z $sopts"
|
||||
ebegin "Saving kernel core dump in $dump_dir"
|
||||
savecore $sopts >/dev/null
|
||||
eend $?
|
||||
}
|
||||
111
init.d/staticroute.in
Normal file
111
init.d/staticroute.in
Normal file
@@ -0,0 +1,111 @@
|
||||
S#!@BINDIR@/openrc-run
|
||||
# Copyright (c) 2009-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
# This script was inspired by the equivalent rc.d staticroute from NetBSD.
|
||||
|
||||
description="Configures static routes."
|
||||
__nl="
|
||||
"
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
provide net
|
||||
use network
|
||||
keyword -jail -prefix -vserver
|
||||
}
|
||||
|
||||
pre_flight_checks()
|
||||
{
|
||||
route=route
|
||||
[ -s /etc/route.conf ] && return 0
|
||||
|
||||
if [ -n "$staticiproute" ]; then
|
||||
route="ip route"
|
||||
staticroute="$staticiproute"
|
||||
fi
|
||||
}
|
||||
|
||||
dump_args()
|
||||
{
|
||||
# Route configuration file, as used by the NetBSD RC system
|
||||
if [ -s /etc/route.conf ]; then
|
||||
cat /etc/route.conf
|
||||
return $?
|
||||
fi
|
||||
|
||||
case "$staticroute" in
|
||||
*"$__nl"*)
|
||||
echo "$staticroute"
|
||||
;;
|
||||
*)
|
||||
(
|
||||
set -o noglob
|
||||
IFS=';'; set -- $staticroute
|
||||
IFS="$__nl"; echo "$*"
|
||||
)
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
do_routes()
|
||||
{
|
||||
local xtra= family=
|
||||
[ "$RC_UNAME" != Linux ] && xtra=-q
|
||||
|
||||
ebegin "$1 static routes"
|
||||
eindent
|
||||
pre_flight_checks
|
||||
dump_args | while read args; do
|
||||
[ -z "$args" ] && continue
|
||||
case "$args" in
|
||||
"#"*)
|
||||
;;
|
||||
"+"*)
|
||||
[ $2 = "add" ] && eval ${args#*+}
|
||||
;;
|
||||
"-"*)
|
||||
[ $2 = "del" -o $2 = "delete" ] && eval ${args#*-}
|
||||
;;
|
||||
*)
|
||||
veinfo "$args"
|
||||
case "$route" in
|
||||
"ip route")
|
||||
ip route $2 $args
|
||||
;;
|
||||
*)
|
||||
# Linux route does cannot work it out ...
|
||||
if [ "$RC_UNAME" = Linux ]; then
|
||||
case "$args" in
|
||||
*:*) family="-A inet6";;
|
||||
*) family=;;
|
||||
esac
|
||||
fi
|
||||
route $family $xtra $2 -$args
|
||||
;;
|
||||
esac
|
||||
veend $?
|
||||
esac
|
||||
done
|
||||
eoutdent
|
||||
eend 0
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
do_routes "Adding" "add"
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
local cmd="delete"
|
||||
[ "$RC_UNAME" = Linux ] && cmd="del"
|
||||
do_routes "Deleting" "$cmd"
|
||||
}
|
||||
31
init.d/swap-blk.in
Normal file
31
init.d/swap-blk.in
Normal file
@@ -0,0 +1,31 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
before fsck
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Activating block swap devices"
|
||||
swapctl -A -t blk >/dev/null
|
||||
eend 0 # If swapon has nothing todo it errors, so always return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Deactivating block swap devices"
|
||||
swapctl -U -t blk >/dev/null
|
||||
eend 0
|
||||
}
|
||||
37
init.d/swap.in
Normal file
37
init.d/swap.in
Normal file
@@ -0,0 +1,37 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
before localmount
|
||||
keyword -docker -jail -lxc -openvz -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Activating swap devices"
|
||||
case "$RC_UNAME" in
|
||||
NetBSD|OpenBSD) swapctl -A -t noblk >/dev/null;;
|
||||
*) swapon -a >/dev/null;;
|
||||
esac
|
||||
eend 0 # If swapon has nothing todo it errors, so always return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Deactivating swap devices"
|
||||
case "$RC_UNAME" in
|
||||
NetBSD|OpenBSD) swapctl -U -t noblk >/dev/null;;
|
||||
*) swapoff -a >/dev/null;;
|
||||
esac
|
||||
eend 0
|
||||
}
|
||||
36
init.d/swclock.in
Normal file
36
init.d/swclock.in
Normal file
@@ -0,0 +1,36 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2009-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Sets the local clock to the mtime of a given file."
|
||||
|
||||
depend()
|
||||
{
|
||||
provide clock
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -uml -vserver -xenu
|
||||
}
|
||||
|
||||
# swclock is an OpenRC built in
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Setting the local clock based on last shutdown time"
|
||||
if ! swclock 2> /dev/null; then
|
||||
swclock --warn @SBINDIR@/openrc-run
|
||||
fi
|
||||
eend $?
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Saving the shutdown time"
|
||||
swclock --save
|
||||
eend $?
|
||||
}
|
||||
91
init.d/syscons.in
Normal file
91
init.d/syscons.in
Normal file
@@ -0,0 +1,91 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend() {
|
||||
after clock
|
||||
need localmount
|
||||
keyword -jail -prefix
|
||||
}
|
||||
|
||||
start() {
|
||||
if [ -n "$allscreen_flags" ]; then
|
||||
ebegin "Setting mode to $allscreen_flags for all screens"
|
||||
for v in /dev/ttyv*; do
|
||||
vidcontrol $allscreen_flags <$v
|
||||
done
|
||||
eend $?
|
||||
fi
|
||||
|
||||
if [ -n "$keymap" ]; then
|
||||
ebegin "Setting keymap to $keymap"
|
||||
kbdcontrol -l $keymap </dev/console
|
||||
eend $?
|
||||
fi
|
||||
|
||||
if [ -n "$keyrate" ]; then
|
||||
ebegin "Setting keyrate to $keyrate"
|
||||
kbdcontrol -r $keyrate </dev/console
|
||||
eend $?
|
||||
fi
|
||||
|
||||
if [ -n "$keychange" ]; then
|
||||
ebegin "Changing function keys"
|
||||
eval set -- "$keychange"
|
||||
eindent
|
||||
while [ $# -gt 0 ]; do
|
||||
veinfo "F$1 -> \`$2'"
|
||||
kbdcontrol -f "$1" "$2" </dev/console
|
||||
veend $?
|
||||
shift; shift
|
||||
done
|
||||
eoutdent
|
||||
fi
|
||||
|
||||
if [ -n "$cursor" ]; then
|
||||
ebegin "Setting cursor"
|
||||
vidcontrol -c $cursor
|
||||
eend $?
|
||||
fi
|
||||
|
||||
local v= f=
|
||||
for v in font8x16 font8x14 font8x8; do
|
||||
eval f=\$$v
|
||||
if [ -n "$f" ]; then
|
||||
ebegin "Setting font $f"
|
||||
vidcontrol -f ${v##font} $f
|
||||
eend $?
|
||||
fi
|
||||
done
|
||||
|
||||
if [ -n "$blanktime" ]; then
|
||||
ebegin "Setting blanktime"
|
||||
vidcontrol -t $blanktime
|
||||
eend $?
|
||||
fi
|
||||
|
||||
if [ -n "$saver" ]; then
|
||||
local i=
|
||||
for i in $(kldstat | sed -n -e 's/.* \(splash_.*\)/\1/p'); do
|
||||
kldunload "$i"
|
||||
done
|
||||
kldstat -v | grep -q _saver || kldload ${saver}_saver
|
||||
fi
|
||||
|
||||
if [ -n "$kbdflags" ]; then
|
||||
ebegin "Setting keyboard flags for all screens"
|
||||
for v in /dev/ttyv*; do
|
||||
kbdcontrol $kbdflags <$v
|
||||
done
|
||||
eend $?
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
58
init.d/sysctl.in
Normal file
58
init.d/sysctl.in
Normal file
@@ -0,0 +1,58 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock net
|
||||
before bootmisc logger
|
||||
keyword -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
BSD_sysctl()
|
||||
{
|
||||
[ -e /etc/sysctl.conf ] || return 0
|
||||
local retval=0 var= comments= conf=
|
||||
eindent
|
||||
for conf in @SYSCONFDIR@/sysctl.conf @SYSCONFDIR@/sysctl.d/*.conf; do
|
||||
if [ -r "$conf" ]; then
|
||||
vebegin "applying $conf"
|
||||
while read var comments; do
|
||||
case "$var" in
|
||||
""|"#"*) continue;;
|
||||
esac
|
||||
sysctl -w "$var" >/dev/null || retval=1
|
||||
done < "$conf"
|
||||
veend $retval
|
||||
fi
|
||||
done
|
||||
eoutdent
|
||||
return $retval
|
||||
}
|
||||
|
||||
Linux_sysctl()
|
||||
{
|
||||
local quiet
|
||||
yesno $rc_verbose || quiet=-q
|
||||
|
||||
sysctl ${quiet} --system
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local rc=0
|
||||
|
||||
ebegin "Configuring kernel parameters"
|
||||
case "$RC_UNAME" in
|
||||
*BSD|GNU) BSD_sysctl; rc=$? ;;
|
||||
Linux) Linux_sysctl; rc=$? ;;
|
||||
esac
|
||||
eend $rc "Unable to configure some kernel parameters"
|
||||
}
|
||||
162
init.d/sysfs.in
Normal file
162
init.d/sysfs.in
Normal file
@@ -0,0 +1,162 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Mount the sys filesystem."
|
||||
|
||||
sysfs_opts=nodev,noexec,nosuid
|
||||
|
||||
depend()
|
||||
{
|
||||
keyword -docker -lxc -prefix -chroot+unshare -vserver
|
||||
}
|
||||
|
||||
mount_sys()
|
||||
{
|
||||
grep -Eq "[[:space:]]+sysfs$" /proc/filesystems || return 1
|
||||
mountinfo -q /sys && return 0
|
||||
|
||||
if [ ! -d /sys ]; then
|
||||
if ! mkdir -m 0755 /sys; then
|
||||
ewarn "Could not create /sys!"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
||||
ebegin "Mounting /sys"
|
||||
if ! fstabinfo --mount /sys; then
|
||||
mount -n -t sysfs -o ${sysfs_opts} sysfs /sys
|
||||
fi
|
||||
eend $?
|
||||
}
|
||||
|
||||
mount_misc()
|
||||
{
|
||||
# Setup Kernel Support for securityfs
|
||||
if [ -d /sys/kernel/security ] && \
|
||||
! mountinfo -q /sys/kernel/security; then
|
||||
if grep -qs securityfs /proc/filesystems; then
|
||||
ebegin "Mounting security filesystem"
|
||||
mount -n -t securityfs -o ${sysfs_opts} \
|
||||
securityfs /sys/kernel/security
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
|
||||
# Setup Kernel Support for debugfs
|
||||
if [ -d /sys/kernel/debug ] && ! mountinfo -q /sys/kernel/debug; then
|
||||
if grep -qs debugfs /proc/filesystems; then
|
||||
ebegin "Mounting debug filesystem"
|
||||
mount -n -t debugfs -o ${sysfs_opts} debugfs /sys/kernel/debug
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
|
||||
# Setup Kernel Support for configfs
|
||||
if [ -d /sys/kernel/config ] && ! mountinfo -q /sys/kernel/config; then
|
||||
if grep -qs configfs /proc/filesystems; then
|
||||
ebegin "Mounting config filesystem"
|
||||
mount -n -t configfs -o ${sysfs_opts} configfs /sys/kernel/config
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
|
||||
# set up kernel support for fusectl
|
||||
if [ -d /sys/fs/fuse/connections ] \
|
||||
&& ! mountinfo -q /sys/fs/fuse/connections; then
|
||||
if grep -qs fusectl /proc/filesystems; then
|
||||
ebegin "Mounting fuse control filesystem"
|
||||
mount -n -t fusectl -o ${sysfs_opts} \
|
||||
fusectl /sys/fs/fuse/connections
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
|
||||
# Setup Kernel Support for SELinux
|
||||
if [ -d /sys/fs/selinux ] && ! mountinfo -q /sys/fs/selinux; then
|
||||
if grep -qs selinuxfs /proc/filesystems; then
|
||||
ebegin "Mounting SELinux filesystem"
|
||||
mount -t selinuxfs selinuxfs /sys/fs/selinux
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
|
||||
# Setup Kernel Support for persistent storage
|
||||
if [ -d /sys/fs/pstore ] && ! mountinfo -q /sys/fs/pstore; then
|
||||
if grep -qs 'pstore$' /proc/filesystems; then
|
||||
ebegin "Mounting persistent storage (pstore) filesystem"
|
||||
mount -t pstore pstore -o ${sysfs_opts} /sys/fs/pstore
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
|
||||
# set up kernel support for efivarfs
|
||||
if [ -d /sys/firmware/efi/efivars ] &&
|
||||
! mountinfo -q /sys/firmware/efi/efivars; then
|
||||
ebegin "Mounting efivarfs filesystem"
|
||||
mount -n -t efivarfs -o ro \
|
||||
efivarfs /sys/firmware/efi/efivars 2> /dev/null
|
||||
eend 0
|
||||
fi
|
||||
}
|
||||
|
||||
mount_cgroups()
|
||||
{
|
||||
# set up kernel support for cgroups
|
||||
if [ -d /sys/fs/cgroup ] && ! mountinfo -q /sys/fs/cgroup; then
|
||||
if grep -qs cgroup /proc/filesystems; then
|
||||
ebegin "Mounting cgroup filesystem"
|
||||
local opts="${sysfs_opts},mode=755,size=${rc_cgroupsize:-10m}"
|
||||
mount -n -t tmpfs -o ${opts} cgroup_root /sys/fs/cgroup
|
||||
eend $?
|
||||
fi
|
||||
fi
|
||||
|
||||
mountinfo -q /sys/fs/cgroup || return 0
|
||||
|
||||
if ! mountinfo -q /sys/fs/cgroup/openrc; then
|
||||
local agent="@LIBEXECDIR@/sh/cgroup-release-agent.sh"
|
||||
mkdir /sys/fs/cgroup/openrc
|
||||
mount -n -t cgroup \
|
||||
-o none,${sysfs_opts},name=openrc,release_agent="$agent" \
|
||||
openrc /sys/fs/cgroup/openrc
|
||||
printf 1 > /sys/fs/cgroup/openrc/notify_on_release
|
||||
fi
|
||||
|
||||
yesno ${rc_controller_cgroups:-YES} && [ -e /proc/cgroups ] || return 0
|
||||
while read name hier groups enabled rest; do
|
||||
case "${enabled}" in
|
||||
1) mountinfo -q /sys/fs/cgroup/${name} && continue
|
||||
mkdir /sys/fs/cgroup/${name}
|
||||
mount -n -t cgroup -o ${sysfs_opts},${name} \
|
||||
${name} /sys/fs/cgroup/${name}
|
||||
;;
|
||||
esac
|
||||
done < /proc/cgroups
|
||||
}
|
||||
|
||||
restorecon_sys()
|
||||
{
|
||||
if [ -x /sbin/restorecon ]; then
|
||||
ebegin "Restoring SELinux contexts in /sys"
|
||||
restorecon -F /sys/devices/system/cpu/online >/dev/null 2>&1
|
||||
restorecon -rF /sys/fs/cgroup >/dev/null 2>&1
|
||||
eend $?
|
||||
fi
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
mount_sys
|
||||
mount_misc
|
||||
mount_cgroups
|
||||
restorecon_sys
|
||||
return 0
|
||||
}
|
||||
27
init.d/syslogd.in
Normal file
27
init.d/syslogd.in
Normal file
@@ -0,0 +1,27 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
command=/usr/sbin/syslogd
|
||||
command_args=$syslogd_args
|
||||
case "$RC_UNAME" in
|
||||
FreeBSD|DragonFly) pidfile=/var/run/syslog.pid;;
|
||||
*) pidfile=/var/run/syslogd.pid;;
|
||||
esac
|
||||
name="System Logger Daemon"
|
||||
|
||||
depend()
|
||||
{
|
||||
provide logger
|
||||
use net newsyslog
|
||||
need localmount
|
||||
after bootmisc clock
|
||||
keyword -prefix
|
||||
}
|
||||
55
init.d/termencoding.in
Normal file
55
init.d/termencoding.in
Normal file
@@ -0,0 +1,55 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2008-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
description="Configures terminal encoding."
|
||||
|
||||
ttyn=${rc_tty_number:-${RC_TTY_NUMBER:-12}}
|
||||
: ${unicode:=${UNICODE}}
|
||||
|
||||
depend()
|
||||
{
|
||||
keyword -docker -lxc -openvz -prefix -chroot+unshare -uml -vserver -xenu
|
||||
use root
|
||||
after bootmisc clock
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
local ttydev=/dev/tty n=
|
||||
[ -d /dev/vc ] && ttydev=/dev/vc/
|
||||
|
||||
# Set terminal encoding to either ASCII or UNICODE.
|
||||
# See utf-8(7) for more information.
|
||||
local termencoding="%@" termmsg="ASCII"
|
||||
if yesno ${unicode}; then
|
||||
termencoding="%G"
|
||||
termmsg="UTF-8"
|
||||
fi
|
||||
|
||||
ebegin "Setting terminal encoding [$termmsg]"
|
||||
n=1
|
||||
while [ ${n} -le "$ttyn" ]; do
|
||||
printf "\033%s" "$termencoding" >$ttydev$n
|
||||
: $(( n += 1 ))
|
||||
done
|
||||
|
||||
# Save the encoding for use immediately at boot
|
||||
if checkpath -W "$RC_LIBEXECDIR"; then
|
||||
mkdir -p "$RC_LIBEXECDIR"/console
|
||||
if yesno ${unicode:-${UNICODE}}; then
|
||||
echo "" > "$RC_LIBEXECDIR"/console/unicode
|
||||
else
|
||||
rm -f "$RC_LIBEXECDIR"/console/unicode
|
||||
fi
|
||||
fi
|
||||
|
||||
eend 0
|
||||
}
|
||||
30
init.d/ttys.in
Normal file
30
init.d/ttys.in
Normal file
@@ -0,0 +1,30 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2008-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock fsck
|
||||
keyword -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
ebegin "Setting tty flags"
|
||||
ttyflags -a
|
||||
eend $? || return $?
|
||||
|
||||
if [ -c /dev/ttyp0 ]; then
|
||||
chmod 666 /dev/tty[p-uw-zP-T][0-9a-zA-Z]
|
||||
fi
|
||||
if [ -c /dev/ttyv1 ]; then
|
||||
chmod 666 /dev/ttyv[0-9a-zA-Z]
|
||||
fi
|
||||
}
|
||||
53
init.d/urandom.in
Normal file
53
init.d/urandom.in
Normal file
@@ -0,0 +1,53 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
: ${urandom_seed:=${URANDOM_SEED:-/var/lib/misc/random-seed}}
|
||||
description="Initializes the random number generator."
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
need localmount
|
||||
keyword -docker -jail -lxc -openvz -prefix -chroot+unshare
|
||||
}
|
||||
|
||||
save_seed()
|
||||
{
|
||||
local psz=1
|
||||
|
||||
if [ -e /proc/sys/kernel/random/poolsize ]; then
|
||||
: $(( psz = $(cat /proc/sys/kernel/random/poolsize) / 4096 ))
|
||||
fi
|
||||
|
||||
( # sub shell to prevent umask pollution
|
||||
umask 077
|
||||
dd if=/dev/urandom of="$urandom_seed" count=${psz} 2>/dev/null
|
||||
)
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
[ -c /dev/urandom ] || return
|
||||
if [ -f "$urandom_seed" ]; then
|
||||
ebegin "Initializing random number generator"
|
||||
cat "$urandom_seed" > /dev/urandom
|
||||
eend $? "Error initializing random number generator"
|
||||
fi
|
||||
rm -f "$urandom_seed" && save_seed
|
||||
return 0
|
||||
}
|
||||
|
||||
stop()
|
||||
{
|
||||
ebegin "Saving random seed"
|
||||
save_seed
|
||||
eend $? "Failed to save random seed"
|
||||
}
|
||||
108
init.d/wscons.in
Normal file
108
init.d/wscons.in
Normal file
@@ -0,0 +1,108 @@
|
||||
#!@SBINDIR@/openrc-run
|
||||
# Copyright (c) 2007-2015 The OpenRC Authors.
|
||||
# See the Authors file at the top-level directory of this distribution and
|
||||
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
||||
#
|
||||
# This file is part of OpenRC. It is subject to the license terms in
|
||||
# the LICENSE file found in the top-level directory of this
|
||||
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
||||
# This file may not be copied, modified, propagated, or distributed
|
||||
# except according to the terms contained in the LICENSE file.
|
||||
|
||||
depend()
|
||||
{
|
||||
after clock
|
||||
need localmount
|
||||
keyword -prefix
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
wscfg=/usr/sbin/wsconscfg
|
||||
wsfld=/usr/sbin/wsfontload
|
||||
wsctl=/sbin/wsconsctl
|
||||
config=/etc/wscons.conf
|
||||
|
||||
# args mean:
|
||||
# screen idx scr emul
|
||||
# font name width height enc file
|
||||
while read type arg1 arg2 arg3 arg4 arg5; do
|
||||
case "$type" in
|
||||
\#*|"")
|
||||
continue
|
||||
;;
|
||||
|
||||
font)
|
||||
cmd=$wsfld
|
||||
[ "$arg2" != "-" ] && cmd="$cmd -w $arg2"
|
||||
[ "$arg3" != "-" ] && cmd="$cmd -h $arg3"
|
||||
[ "$arg4" != "-" ] && cmd="$cmd -e $arg4"
|
||||
cmd="$cmd -N $arg1 $arg5"
|
||||
eval "$cmd"
|
||||
;;
|
||||
|
||||
screen)
|
||||
cmd=$wscfg
|
||||
[ "$arg2" != "-" ] && cmd="$cmd -t $arg2"
|
||||
[ "$arg3" != "-" ] && cmd="$cmd -e $arg3"
|
||||
cmd="$cmd $arg1"
|
||||
eval "$cmd"
|
||||
;;
|
||||
|
||||
keyboard)
|
||||
cmd=$wscfg
|
||||
case "$arg1" in
|
||||
-|auto)
|
||||
cmd="$cmd -k"
|
||||
;;
|
||||
*)
|
||||
cmd="$cmd -k $arg1"
|
||||
;;
|
||||
esac
|
||||
$cmd
|
||||
;;
|
||||
|
||||
encoding)
|
||||
eval $wsctl -w "\"encoding=$arg1\""
|
||||
;;
|
||||
|
||||
mapfile)
|
||||
local entry=
|
||||
while read entry; do
|
||||
case "$entry" in
|
||||
\#*|"")
|
||||
continue
|
||||
;;
|
||||
*)
|
||||
cmd="$wsctl -w \"map+=$entry\""
|
||||
eval "$cmd >/dev/null"
|
||||
;;
|
||||
esac
|
||||
done < "$arg1"
|
||||
;;
|
||||
|
||||
mux)
|
||||
eval "$wscfg -m $arg1"
|
||||
;;
|
||||
|
||||
setvar)
|
||||
case "$arg1" in
|
||||
keyboard)
|
||||
cmd="$wsctl -kw $arg2"
|
||||
;;
|
||||
display)
|
||||
cmd="$wsctl -dw $arg2"
|
||||
;;
|
||||
mouse)
|
||||
cmd="$wsctl -mw $arg2"
|
||||
;;
|
||||
*)
|
||||
cmd="$wsctl -w $arg1"
|
||||
;;
|
||||
esac
|
||||
eval "$cmd"
|
||||
;;
|
||||
|
||||
esac
|
||||
done < "$config"
|
||||
}
|
||||
Reference in New Issue
Block a user