10 lines
337 B
Bash
10 lines
337 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -xeuo pipefail
|
||
|
|
||
|
# Work around https://bugzilla.redhat.com/show_bug.cgi?id=1265295
|
||
|
echo 'Storage=persistent' >> /etc/systemd/journald.conf
|
||
|
|
||
|
# Work around https://github.com/systemd/systemd/issues/4082
|
||
|
find /usr/lib/systemd/system/ -type f -exec sed -i -e '/^PrivateTmp=/d' -e '/^Protect\(Home\|System\)=/d' {} \;
|