2021-04-23 21:13:09 +02:00
|
|
|
#!/bin/bash
|
2009-08-26 17:00:38 +02:00
|
|
|
#
|
|
|
|
# rc.M This file is executed by init(8) when the system is being
|
|
|
|
# initialized for one of the "multi user" run levels (i.e.
|
|
|
|
# levels 1 through 6). It usually does mounting of file
|
|
|
|
# systems et al.
|
|
|
|
#
|
2021-11-12 20:19:46 +01:00
|
|
|
# Version: @(#)/etc/rc.d/rc.M 15.0 Fri Nov 12 18:51:28 UTC 2021
|
2009-08-26 17:00:38 +02:00
|
|
|
#
|
|
|
|
# Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
|
|
|
|
# Heavily modified by Patrick Volkerding <volkerdi@slackware.com>
|
|
|
|
#
|
|
|
|
|
|
|
|
# Tell the viewers what's going to happen.
|
|
|
|
echo "Going multiuser..."
|
|
|
|
|
2021-11-11 21:36:12 +01:00
|
|
|
# If we are in an lxc container, set $container to skip parts of the script.
|
|
|
|
# Thanks to Matteo Bernardini <ponce@slackbuilds.org> and Chris Willing for
|
|
|
|
# the initial work making this script lxc compatible.
|
|
|
|
if grep -aq container=lxc /proc/1/environ 2> /dev/null ; then
|
|
|
|
container="lxc"
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Update all the shared library links:
|
|
|
|
if [ -x /sbin/ldconfig ]; then
|
|
|
|
echo "Updating shared library links: /sbin/ldconfig &"
|
|
|
|
/sbin/ldconfig &
|
|
|
|
fi
|
|
|
|
|
2019-01-09 04:21:06 +01:00
|
|
|
# Call the setterm init script to set screen blanking and power management
|
|
|
|
# defaults:
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.setterm -a -z "$container" ]; then
|
2019-01-09 04:21:06 +01:00
|
|
|
/etc/rc.d/rc.setterm
|
|
|
|
fi
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2021-11-11 21:36:12 +01:00
|
|
|
# Set the hostname:
|
|
|
|
if [ -z "$container" ]; then
|
|
|
|
if [ -r /etc/HOSTNAME ]; then
|
|
|
|
/bin/hostname $(cat /etc/HOSTNAME)
|
|
|
|
else
|
|
|
|
# fall back on this old default:
|
|
|
|
echo "darkstar.example.net" > /etc/HOSTNAME
|
|
|
|
/bin/hostname $(cat /etc/HOSTNAME)
|
|
|
|
fi
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
# Set the permissions on /var/log/dmesg according to whether the kernel
|
|
|
|
# permits non-root users to access kernel dmesg information:
|
|
|
|
if [ -r /proc/sys/kernel/dmesg_restrict ]; then
|
|
|
|
if [ $(cat /proc/sys/kernel/dmesg_restrict) = 1 ]; then
|
|
|
|
touch /var/log/dmesg
|
|
|
|
chmod 640 /var/log/dmesg
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
touch /var/log/dmesg
|
|
|
|
chmod 644 /var/log/dmesg
|
|
|
|
fi
|
2009-08-26 17:00:38 +02:00
|
|
|
# Save the contents of 'dmesg':
|
|
|
|
/bin/dmesg -s 65536 > /var/log/dmesg
|
|
|
|
|
|
|
|
# Initialize PCMCIA devices:
|
|
|
|
#
|
|
|
|
# NOTE: This used to be started near the top of rc.S so that PCMCIA devices
|
|
|
|
# could be fsck'ed along with the other drives. This had some unfortunate
|
|
|
|
# side effects, however, since root isn't yet read-write, and /var might not
|
|
|
|
# even be mounted the .pid files can't be correctly written in /var/run and
|
|
|
|
# the pcmcia system can't be correctly shut down. If you want some PCMCIA
|
|
|
|
# partition to be mounted at boot (or when the card is inserted) then add
|
|
|
|
# the appropriate lines to /etc/pcmcia/scsi.opts.
|
|
|
|
#
|
|
|
|
# Note that the stuff in /etc/pcmcia/ is only for 2.4.x kernels using
|
|
|
|
# 16-bit PCMCIA cards (not 32-bit Cardbus cards!). For example, with a
|
|
|
|
# wireless card you might need to set options in /etc/pcmcia OR in
|
|
|
|
# /etc/rc.d/rc.wireless.conf, or even in /etc/rc.d/rc.inet1.conf (with
|
|
|
|
# extra options if needed for the encryption key, ESSID, etc.)
|
|
|
|
#
|
|
|
|
# Hopefully this situation will be unified in the future, but for now
|
|
|
|
# that's how it is...
|
|
|
|
#
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.pcmcia -a -z "$container" ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.pcmcia start
|
2009-08-26 17:00:38 +02:00
|
|
|
# The cards might need a little extra time here to initialize.
|
|
|
|
sleep 5
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start the system logger.
|
2020-02-13 21:17:58 +01:00
|
|
|
if [ -x /etc/rc.d/rc.syslog ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.syslog start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2024-03-20 22:10:30 +01:00
|
|
|
# Start the Icecream scheduler. This needs to run on only one machine that is
|
|
|
|
# part of the compile cluster:
|
|
|
|
if [ -x /etc/rc.d/rc.icecc-scheduler ]; then
|
|
|
|
/etc/rc.d/rc.icecc-scheduler start
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start the Icecream daemon. This needs to run on every machine that will be
|
|
|
|
# part of the compile cluster (including the machine running the scheduler):
|
|
|
|
if [ -x /etc/rc.d/rc.iceccd ]; then
|
|
|
|
/etc/rc.d/rc.iceccd start
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Update the X font indexes:
|
|
|
|
if [ -x /usr/bin/fc-cache ]; then
|
|
|
|
echo "Updating X font indexes: /usr/bin/fc-cache -f &"
|
|
|
|
/usr/bin/fc-cache -f &
|
|
|
|
fi
|
|
|
|
|
2012-09-26 03:10:42 +02:00
|
|
|
# Run rc.udev again. This will start udev if it is not already running
|
|
|
|
# (for example, upon return from runlevel 1), otherwise it will trigger it
|
|
|
|
# to look for device changes and to generate persistent rules if needed.
|
2013-11-04 18:08:47 +01:00
|
|
|
if grep -wq sysfs /proc/mounts && grep -q devtmpfs /proc/filesystems ; then
|
2009-08-26 17:00:38 +02:00
|
|
|
if ! grep -wq nohotplug /proc/cmdline ; then
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.udev -a -z "$container" ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.udev start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-06-13 23:55:19 +02:00
|
|
|
# Start the haveged entropy daemon:
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.haveged -a -z "$container" ]; then
|
2018-06-13 23:55:19 +02:00
|
|
|
/etc/rc.d/rc.haveged start
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start the rngd entropy daemon:
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.rngd -a -z "$container" ]; then
|
2018-06-13 23:55:19 +02:00
|
|
|
/etc/rc.d/rc.rngd start
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Initialize the networking hardware.
|
|
|
|
if [ -x /etc/rc.d/rc.inet1 ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.inet1
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
# Start D-Bus:
|
|
|
|
if [ -x /etc/rc.d/rc.messagebus ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.messagebus start
|
|
|
|
fi
|
|
|
|
|
2020-06-19 00:01:29 +02:00
|
|
|
# Start the session/seat daemon:
|
2020-10-22 21:20:07 +02:00
|
|
|
if [ -x /etc/rc.d/rc.elogind -a -x /bin/loginctl ]; then
|
2020-06-19 00:01:29 +02:00
|
|
|
/etc/rc.d/rc.elogind start
|
2020-06-19 21:59:04 +02:00
|
|
|
elif [ -x /etc/rc.d/rc.consolekit -a -x /usr/sbin/console-kit-daemon ]; then
|
|
|
|
/etc/rc.d/rc.consolekit start
|
2016-06-30 22:26:57 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start Bluetooth:
|
|
|
|
if [ -x /etc/rc.d/rc.bluetooth ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.bluetooth start
|
2016-06-30 22:26:57 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start wicd or networkmanager:
|
|
|
|
if [ -x /etc/rc.d/rc.wicd -a -x /usr/sbin/wicd ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.wicd start
|
2016-06-30 22:26:57 +02:00
|
|
|
elif [ -x /etc/rc.d/rc.networkmanager ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.networkmanager start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
Fri Feb 23 02:27:35 UTC 2024
a/aaa_libraries-15.1-x86_64-26.txz: Rebuilt.
Upgraded: libacl.so.1.1.2302, libattr.so.1.1.2502, liblzma.so.5.4.6,
libpcre2-8.so.0.12.0, libz.so.1.3.1, libcares.so.2.11.0,
libexpat.so.1.9.0, libffi.so.8.1.4, libglib-2.0.so.0.7800.4,
libgmodule-2.0.so.0.7800.4, libgobject-2.0.so.0.7800.4,
libgthread-2.0.so.0.7800.4, libidn.so.12.6.5, libidn2.so.0.4.0,
libpng16.so.16.41.0, libpsl.so.5.3.5, libtdb.so.1.4.10, libusb-1.0.so.0.4.0.
a/etc-15.1-x86_64-5.txz: Rebuilt.
Added UID 214 and GID 214 for avahi.
a/gettext-0.22.5-x86_64-1.txz: Upgraded.
a/pkgtools-15.1-noarch-9.txz: Rebuilt.
setup.services: support rc.avahidaemon and rc.avahidnsconfd.
a/sysvinit-scripts-15.1-noarch-13.txz: Rebuilt.
rc.M: start (if executable) rc.avahidaemon and rc.avahidnsconfd.
ap/cups-2.4.7-x86_64-2.txz: Rebuilt.
Recompiled against avahi.
ap/cups-filters-1.28.17-x86_64-4.txz: Rebuilt.
Recompiled against avahi.
ap/hplip-3.23.12-x86_64-1.txz: Upgraded.
Compiled against avahi.
ap/xmltoman-0.6-x86_64-1.txz: Added.
This is needed to generate manpages for avahi.
d/distcc-3.4-x86_64-4.txz: Rebuilt.
Recompiled against avahi.
d/gettext-tools-0.22.5-x86_64-1.txz: Upgraded.
l/avahi-20240220_dffd549-x86_64-1.txz: Added.
It was either this, or drop (or fork) hplip. We'll enjoy it in the long run.
Thanks to David Somero for the original build script, and to Robby Workman
for years of maintenance.
Signed-off-by: volkerdi
Acked-by: alienBOB
l/libdaemon-0.14-x86_64-1.txz: Added.
This is needed by avahi.
l/pipewire-1.0.3-x86_64-5.txz: Rebuilt.
Recompiled against avahi.
l/pulseaudio-17.0-x86_64-3.txz: Rebuilt.
Recompiled against avahi.
n/NetworkManager-1.46.0-x86_64-1.txz: Upgraded.
n/netatalk-3.1.18-x86_64-2.txz: Rebuilt.
Recompiled against avahi.
n/samba-4.19.5-x86_64-2.txz: Rebuilt.
Recompiled against avahi.
xap/pidgin-2.14.12-x86_64-3.txz: Rebuilt.
Recompiled against avahi.
xap/sane-1.2.1-x86_64-3.txz: Rebuilt.
Recompiled against avahi.
extra/bash-completion/bash-completion-2.12.0-noarch-1.txz: Upgraded.
2024-02-23 03:27:35 +01:00
|
|
|
# Start Avahi mDNS/DNS-SD daemon:
|
|
|
|
if [ -x /etc/rc.d/rc.avahidaemon ]; then
|
|
|
|
/etc/rc.d/rc.avahidaemon start
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start Avahi mDNS/DNS-SD DNS server configuration daemon:
|
|
|
|
if [ -x /etc/rc.d/rc.avahidnsconfd ]; then
|
|
|
|
/etc/rc.d/rc.avahidnsconfd start
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Start networking daemons:
|
|
|
|
if [ -x /etc/rc.d/rc.inet2 ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.inet2
|
2016-06-30 22:26:57 +02:00
|
|
|
fi
|
|
|
|
|
2023-07-08 21:46:10 +02:00
|
|
|
# Unlock any LUKS devices that still aren't unlocked:
|
|
|
|
if [ -x /etc/rc.d/rc.luks ]; then
|
|
|
|
/etc/rc.d/rc.luks start
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Mount any additional filesystem types that haven't already been mounted:
|
2016-06-30 22:26:57 +02:00
|
|
|
mount -a -v 2> /dev/null | grep -v -e "already mounted" -e "ignored" | cut -f 1 -d : | tr -d ' ' | while read dev ; do mount | grep "${dev} " ; done
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
# Start the Control Script for automounter:
|
|
|
|
if [ -x /etc/rc.d/rc.autofs ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.autofs start
|
2011-04-25 15:37:00 +02:00
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Start the Network Time Protocol daemon:
|
|
|
|
if [ -x /etc/rc.d/rc.ntpd ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.ntpd start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove stale locks and junk files (must be done after mount -a!)
|
2018-07-01 20:49:11 +02:00
|
|
|
/bin/rm -f /var/lock/* /var/spool/uucp/LCK..* /tmp/.X*lock /tmp/.X11-unix/* 2> /dev/null
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# Remove stale hunt sockets so the game can start.
|
|
|
|
if [ -r /tmp/hunt -o -r /tmp/hunt.stats ]; then
|
|
|
|
echo "Removing your stale hunt sockets from /tmp."
|
|
|
|
/bin/rm -f /tmp/hunt*
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Ensure basic filesystem permissions sanity.
|
|
|
|
chmod 755 / 2> /dev/null
|
|
|
|
chmod 1777 /tmp /var/tmp
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
# Start ACPI daemon.
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.acpid -a -z "$container" ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.acpid start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
# Enable CPU frequency scaling:
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.cpufreq -a -z "$container" ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.cpufreq start
|
2016-06-30 22:26:57 +02:00
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
# Update any existing icon cache files:
|
2016-06-30 22:26:57 +02:00
|
|
|
if find /usr/share/icons -maxdepth 2 2> /dev/null | grep -q icon-theme.cache ; then
|
2009-08-26 17:00:38 +02:00
|
|
|
for theme_dir in /usr/share/icons/* ; do
|
|
|
|
if [ -r ${theme_dir}/icon-theme.cache ]; then
|
|
|
|
echo "Updating icon-theme.cache in ${theme_dir}..."
|
|
|
|
/usr/bin/gtk-update-icon-cache -t -f ${theme_dir} 1> /dev/null 2> /dev/null &
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
# This would be a large file and probably shouldn't be there.
|
|
|
|
if [ -r /usr/share/icons/icon-theme.cache ]; then
|
|
|
|
echo "Deleting icon-theme.cache in /usr/share/icons..."
|
|
|
|
#/usr/bin/gtk-update-icon-cache -t -f /usr/share/icons 1> /dev/null 2> /dev/null &
|
|
|
|
rm -f /usr/share/icons/icon-theme.cache
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Update mime database:
|
|
|
|
if [ -x /usr/bin/update-mime-database -a -d /usr/share/mime ]; then
|
|
|
|
echo "Updating MIME database: /usr/bin/update-mime-database /usr/share/mime &"
|
|
|
|
/usr/bin/update-mime-database /usr/share/mime 1> /dev/null 2> /dev/null &
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start HAL:
|
|
|
|
if [ -x /etc/rc.d/rc.hald ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.hald start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2016-06-30 22:26:57 +02:00
|
|
|
# Start system-wide PulseAudio daemon (not recommended, nor required in
|
|
|
|
# order to use PulseAudio -- see the script for details):
|
|
|
|
if [ -x /etc/rc.d/rc.pulseaudio ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.pulseaudio start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# These GTK+/pango files need to be kept up to date for
|
|
|
|
# proper input method, pixbuf loaders, and font support.
|
|
|
|
if [ -x /usr/bin/update-gtk-immodules ]; then
|
2016-06-30 22:26:57 +02:00
|
|
|
echo "Updating gtk.immodules:"
|
|
|
|
echo " /usr/bin/update-gtk-immodules &"
|
|
|
|
/usr/bin/update-gtk-immodules > /dev/null 2>&1 &
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
if [ -x /usr/bin/update-gdk-pixbuf-loaders ]; then
|
2016-06-30 22:26:57 +02:00
|
|
|
echo "Updating gdk-pixbuf.loaders:"
|
|
|
|
echo " /usr/bin/update-gdk-pixbuf-loaders &"
|
2018-08-08 01:24:17 +02:00
|
|
|
HOME=/root /usr/bin/update-gdk-pixbuf-loaders > /dev/null 2>&1 &
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
if [ -x /usr/bin/update-pango-querymodules ]; then
|
2016-06-30 22:26:57 +02:00
|
|
|
echo "Updating pango.modules:"
|
|
|
|
echo " /usr/bin/update-pango-querymodules &"
|
|
|
|
/usr/bin/update-pango-querymodules > /dev/null 2>&1 &
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
2013-11-04 18:08:47 +01:00
|
|
|
if [ -x /usr/bin/glib-compile-schemas ]; then
|
2016-06-30 22:26:57 +02:00
|
|
|
echo "Compiling GSettings XML schema files:"
|
|
|
|
echo " /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas &"
|
|
|
|
/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas >/dev/null 2>&1 &
|
2013-11-04 18:08:47 +01:00
|
|
|
fi
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# Start dnsmasq, a simple DHCP/DNS server:
|
|
|
|
if [ -x /etc/rc.d/rc.dnsmasq ]; then
|
|
|
|
/etc/rc.d/rc.dnsmasq start
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start snmpd:
|
|
|
|
if [ -x /etc/rc.d/rc.snmpd ]; then
|
|
|
|
/etc/rc.d/rc.snmpd start
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start the print spooling system. This will usually be LPRng (lpd) or CUPS.
|
|
|
|
if [ -x /etc/rc.d/rc.cups ]; then
|
|
|
|
# Start CUPS:
|
|
|
|
/etc/rc.d/rc.cups start
|
|
|
|
elif [ -x /etc/rc.d/rc.lprng ]; then
|
|
|
|
# Start LPRng (lpd):
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.lprng start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start netatalk. (a file/print server for Macs using Appletalk)
|
|
|
|
if [ -x /etc/rc.d/rc.atalk ]; then
|
2012-09-26 03:10:42 +02:00
|
|
|
/etc/rc.d/rc.atalk start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start smartd, which monitors the status of S.M.A.R.T. compatible
|
2018-05-28 21:12:29 +02:00
|
|
|
# hard drives and reports any problems:
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.smartd -a -z "$container" ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.smartd start
|
|
|
|
fi
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# Monitor the UPS with genpowerd.
|
|
|
|
# To use this, uncomment this section and edit your settings in
|
|
|
|
# /etc/genpowerd.conf (serial device, UPS type, etc). For more information,
|
|
|
|
# see "man genpowerd" or the extensive documentation in the
|
|
|
|
# /usr/doc/genpower-*/ directory.
|
|
|
|
# You'll also need to configure a similar block in /etc/rc.d/rc.6 if you want
|
|
|
|
# support for stopping the UPS's inverter after the machine halts.
|
2021-11-11 21:36:12 +01:00
|
|
|
#if [ -x /sbin/genpowerd -a -z "$container" ]; then
|
2009-08-26 17:00:38 +02:00
|
|
|
# echo "Starting genpowerd daemon..."
|
|
|
|
# /sbin/genpowerd
|
|
|
|
#fi
|
|
|
|
|
|
|
|
# Turn on process accounting. To enable process accounting, make sure the
|
|
|
|
# option for BSD process accounting is enabled in your kernel, and then
|
|
|
|
# create the file /var/log/pacct (touch /var/log/pacct). By default, process
|
|
|
|
# accounting is not enabled (since /var/log/pacct does not exist). This is
|
|
|
|
# because the log file can get VERY large.
|
|
|
|
if [ -x /sbin/accton -a -r /var/log/pacct ]; then
|
|
|
|
chmod 640 /var/log/pacct
|
|
|
|
/sbin/accton /var/log/pacct
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start crond (Dillon's crond):
|
2018-06-13 07:43:00 +02:00
|
|
|
if [ -x /etc/rc.d/rc.crond ]; then
|
|
|
|
/etc/rc.d/rc.crond start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start atd (manages jobs scheduled with 'at'):
|
2018-06-13 07:43:00 +02:00
|
|
|
if [ -x /etc/rc.d/rc.atd ]; then
|
|
|
|
/etc/rc.d/rc.atd start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Slackware-Mini-Quota-HOWTO:
|
|
|
|
# To really activate quotas, you'll need to add 'usrquota' and/or 'grpquota' to
|
|
|
|
# the appropriate partitions as listed in /etc/fstab. Here's an example:
|
|
|
|
#
|
|
|
|
# /dev/hda2 /home ext3 defaults,usrquota 1 1
|
|
|
|
#
|
|
|
|
# You'll then need to setup initial quota files at the top of the partitions
|
|
|
|
# to support quota, like this:
|
|
|
|
# touch /home/aquota.user /home/aquota.group
|
|
|
|
# chmod 600 /home/aquota.user /home/aquota.group
|
|
|
|
#
|
|
|
|
# Then, reboot to activate the system.
|
|
|
|
# To edit user quotas, use 'edquota'. See 'man edquota'. Also, the
|
|
|
|
# official Quota Mini-HOWTO has lots of useful information. That can be found
|
|
|
|
# here: /usr/doc/Linux-HOWTOs/Quota
|
|
|
|
|
|
|
|
# Check quotas and then turn quota system on:
|
|
|
|
if grep -q quota /etc/fstab ; then
|
|
|
|
for quotafs in $(awk '/quota/ {print $2}' /etc/fstab) ; do
|
|
|
|
/bin/rm -f $quotafs/{a,}quota.{group,user}.new
|
|
|
|
done
|
|
|
|
if [ -x /sbin/quotacheck ]; then
|
|
|
|
echo "Checking filesystem quotas: /sbin/quotacheck -avugm"
|
|
|
|
/sbin/quotacheck -avugm
|
|
|
|
fi
|
|
|
|
if [ -x /sbin/quotaon ]; then
|
|
|
|
echo "Activating filesystem quotas: /sbin/quotaon -avug"
|
|
|
|
/sbin/quotaon -avug
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Load ALSA (sound) defaults:
|
2021-11-11 21:36:12 +01:00
|
|
|
if [ -x /etc/rc.d/rc.alsa -a -z "$container" ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.alsa
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Load a custom screen font if the user has an rc.font script.
|
|
|
|
if [ -x /etc/rc.d/rc.font ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.font
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Load a custom keymap if the user has an rc.keymap script.
|
|
|
|
if [ -x /etc/rc.d/rc.keymap ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.keymap
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2021-11-12 20:19:46 +01:00
|
|
|
# Start the MariaDB database:
|
2009-08-26 17:00:38 +02:00
|
|
|
if [ -x /etc/rc.d/rc.mysqld ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.mysqld start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2021-11-12 20:19:46 +01:00
|
|
|
# Start the SASL authentication server. This provides SASL
|
|
|
|
# authentication services for sendmail/postfix:
|
|
|
|
if [ -x /etc/rc.d/rc.saslauthd ]; then
|
|
|
|
/etc/rc.d/rc.saslauthd start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start OpenLDAP:
|
|
|
|
if [ -x /etc/rc.d/rc.openldap ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.openldap start
|
|
|
|
fi
|
|
|
|
|
2020-05-08 23:25:24 +02:00
|
|
|
# Start local LDAP name service daemon (from nss-pam-ldapd):
|
2023-12-29 22:02:02 +01:00
|
|
|
if [ -x /etc/rc.d/rc.nss-pam-ldap ]; then
|
|
|
|
/etc/rc.d/rc.nss-pam-ldap start
|
2020-05-08 23:25:24 +02:00
|
|
|
fi
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# Start Dovecot:
|
|
|
|
if [ -x /etc/rc.d/rc.dovecot ]; then
|
|
|
|
/etc/rc.d/rc.dovecot start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
2021-11-12 20:19:46 +01:00
|
|
|
# Start the mail server. Try the rc.sendmail script first, then try rc.postfix.
|
2022-03-29 22:16:24 +02:00
|
|
|
if [ -x /etc/rc.d/rc.sendmail -a -x /usr/sbin/makemap ]; then
|
2021-11-12 20:19:46 +01:00
|
|
|
/etc/rc.d/rc.sendmail start
|
2022-03-29 22:16:24 +02:00
|
|
|
elif [ -x /etc/rc.d/rc.postfix -a -x /usr/sbin/postdrop ]; then
|
2021-11-12 20:19:46 +01:00
|
|
|
/etc/rc.d/rc.postfix start
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start Apache web server:
|
|
|
|
if [ -x /etc/rc.d/rc.httpd ]; then
|
|
|
|
/etc/rc.d/rc.httpd start
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start Samba (a file/print server for Windows machines).
|
2009-08-26 17:00:38 +02:00
|
|
|
# Samba can be started in /etc/inetd.conf instead.
|
|
|
|
if [ -x /etc/rc.d/rc.samba ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.samba start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start the GPM mouse server:
|
|
|
|
if [ -x /etc/rc.d/rc.gpm ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.gpm start
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If there are SystemV init scripts for this runlevel, run them.
|
|
|
|
if [ -x /etc/rc.d/rc.sysvinit ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.sysvinit
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Start the local setup procedure.
|
|
|
|
if [ -x /etc/rc.d/rc.local ]; then
|
2018-05-28 21:12:29 +02:00
|
|
|
/etc/rc.d/rc.local
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# All done.
|