Renamed sample-rc.d -> rc.d. Update netdata cert/key. Add msmtp cert/key.
This commit is contained in:
parent
ac528e2ff7
commit
831c0eafd3
17 changed files with 29 additions and 18 deletions
24
rc.d/rc.modules.local
Executable file
24
rc.d/rc.modules.local
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
|
||||
# /etc/rc.d/rc.modules.local
|
||||
|
||||
# The Linux kernel source is the best place to look for documentation
|
||||
# for the many available kernel modules. This can be found under
|
||||
# /usr/src/linux-$VERSION/Documentation/.
|
||||
|
||||
# Almost all necessary modules are automatically loaded when needed,
|
||||
# but there are a few exceptions. Here's a (not all-inclusive) list,
|
||||
# so uncomment any of the below entries or add others as needed:
|
||||
# Note that you could also create/edit rc.modules-$version if you
|
||||
# only wanted specific modules loaded for particular kernels.
|
||||
|
||||
#/sbin/modprobe tun # Universal TUN/TAP device driver
|
||||
#/sbin/modprobe sg # Generic SCSI support for SATA DVD-RW
|
||||
|
||||
# Load sensor modules.
|
||||
if [ -e /etc/sysconfig/lm_sensors ]; then
|
||||
. /etc/sysconfig/lm_sensors
|
||||
for MOD in $HWMON_MODULES; do
|
||||
/sbin/modprobe "$MOD"
|
||||
done
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue