mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:07:13 +08:00
16 lines
389 B
Bash
Executable File
16 lines
389 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# /lib/systemd/chakra-modules-load
|
|
#
|
|
|
|
. /etc/rc.conf
|
|
|
|
# generate list of modules to be loaded by systemd-module-load in /run/modules-load.d/
|
|
if [[ $MODULES ]]; then
|
|
mkdir /run/modules-load.d
|
|
echo "# Autogenerated by /lib/systemd/chakra-modules-load" > /run/modules-load.d/rc.conf
|
|
printf '%s\n' "${MODULES[@]}" >> /run/modules-load.d/rc.conf
|
|
fi
|
|
|
|
# vim: set noet ts=2 sw=2:
|