summaryrefslogtreecommitdiffstats
path: root/core/modules/dbus
diff options
context:
space:
mode:
Diffstat (limited to 'core/modules/dbus')
-rw-r--r--core/modules/dbus/module.build13
1 files changed, 1 insertions, 12 deletions
diff --git a/core/modules/dbus/module.build b/core/modules/dbus/module.build
index e6a6a05a..e99b5136 100644
--- a/core/modules/dbus/module.build
+++ b/core/modules/dbus/module.build
@@ -1,24 +1,13 @@
#!/bin/bash
fetch_source() {
- echo "Extracting from running system..."
+ :
}
build() {
- # Generate systemd files
- mkdir -p "$MODULE_BUILD_DIR/etc/systemd/system/dbus.service.d"
# This is REQUIRED, otherwise the session daemon won't start (can be empty, but has to exist...)
mkdir -p "${MODULE_BUILD_DIR}/etc/dbus-1/session.d"
-
- # We will either find the service file or generate it,
- # thus we can already create the drop-in for uuidgen
- UUIDGEN=$(find "$MODULE_BUILD_DIR" -name dbus-uuidgen -executable | head -n 1)
- [ -z "$UUIDGEN" ] && perror "Could not determine dbus-uuidgen location"
- cat <<-EOF > "$MODULE_BUILD_DIR/etc/systemd/system/dbus.service.d/uuidgen.conf"
- [Service]
- ExecStartPre=/${UUIDGEN#$MODULE_BUILD_DIR} --ensure
- EOF
}
post_copy() {