|
|
|
@ -6,7 +6,7 @@
@@ -6,7 +6,7 @@
|
|
|
|
|
check() { |
|
|
|
|
|
|
|
|
|
# If the binary(s) requirements are not fulfilled the module can't be installed |
|
|
|
|
require_binaries $systemdutildir/systemd-modules-load || return 1 |
|
|
|
|
require_binaries "$systemdutildir"/systemd-modules-load || return 1 |
|
|
|
|
|
|
|
|
|
# Return 255 to only include the module, if another module requires it. |
|
|
|
|
return 255 |
|
|
|
@ -27,20 +27,19 @@ depends() {
@@ -27,20 +27,19 @@ depends() {
|
|
|
|
|
install() { |
|
|
|
|
|
|
|
|
|
# Create systemd-modules-load related directories. |
|
|
|
|
inst_dir $modulesload |
|
|
|
|
inst_dir $modulesloadconfdir |
|
|
|
|
inst_dir "$modulesload" |
|
|
|
|
inst_dir "$modulesloadconfdir" |
|
|
|
|
|
|
|
|
|
# Install related files for systemd-modules-load |
|
|
|
|
inst_multiple -o \ |
|
|
|
|
$systemdsystemunitdir/systemd-modules-load.service \ |
|
|
|
|
$systemdutildir/systemd-modules-load |
|
|
|
|
"$systemdsystemunitdir"/systemd-modules-load.service \ |
|
|
|
|
"$systemdutildir"/systemd-modules-load |
|
|
|
|
|
|
|
|
|
# Install local user configurations if host only is enabled.. |
|
|
|
|
if [[ $hostonly ]]; then |
|
|
|
|
inst_multiple -H -o \ |
|
|
|
|
$systemdsystemconfdir/systemd-modules-load.service \ |
|
|
|
|
$systemdsystemconfdir/systemd-systemd-modules-load.d/*.conf \ |
|
|
|
|
${NULL} |
|
|
|
|
"$systemdsystemconfdir"/systemd-modules-load.service \ |
|
|
|
|
"$systemdsystemconfdir"/systemd-systemd-modules-load.d/*.conf |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
# Enable the systemd type service unit for systemd-modules-load. |
|
|
|
|