1
1
mirror of https://pagure.io/fedora-kickstarts.git synced 2024-09-28 16:57:22 +00:00

docker-base: limit systemd-tmpfiles to /run/

In 96a6711 we added re-running systemd-tmpfiles to add files to /run
on the root fs of the container. Here we'll limit where systemd-tmpfiles
puts files by passing it --prefix /var and --prefix /var/run/
This commit is contained in:
Dusty Mabe 2017-05-19 09:27:52 -04:00
parent 618d91e179
commit 93205adc7d
No known key found for this signature in database
GPG Key ID: 3302DBD73952E671

View File

@ -26,6 +26,6 @@ systemctl mask systemd-remount-fs.service dev-hugepages.mount sys-fs-fuse-connec
# This unmounts /run (tmpfs) and then recreates the files # This unmounts /run (tmpfs) and then recreates the files
# in the /run directory on the root filesystem of the container # in the /run directory on the root filesystem of the container
umount /run umount /run
systemd-tmpfiles --create --boot systemd-tmpfiles --prefix=/run/ --prefix=/var/run/ --create --boot
%end %end