mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 14:37:14 +08:00
16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
|
#!/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/arch-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:
|