* Fix typo in dconf-update-service.sh * Probably a typo in rpm-ostree.sh * Fix typo in README.md
7 lines
254 B
Bash
7 lines
254 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell build process to exit if there are any errors.
|
|
set -oue pipefail
|
|
|
|
cp -r "$BLING_DIRECTORY/files/usr/etc/systemd/system/dconf-update.service" "/usr/etc/systemd/system/dconf-update.service"
|
|
systemctl enable dconf-update.service
|