Fix manifest typos

This commit is contained in:
Magnus Andersson 2024-01-24 16:31:00 +01:00
parent 76ba806bf9
commit 6d2f32823e
Signed by: mandersson
GPG key ID: 19CB2C58E1F19B16

View file

@ -79,12 +79,12 @@ class podmanrunner::runner (
} }
# Make sure the podman user can read the /data dir # Make sure the podman user can read the /data dir
exec { "change-data-dir-owner-podman": exec { "make-${username}${x}-own-runnerdata":
command => "systemd-run --wait --user --machine=runneruser1@ /bin/bash -c 'echo test'", command => "systemd-run --wait --user --machine=${username}${x}@ /bin/bash -c 'echo test'",
path => '/usr/bin:/usr/sbin:/bin', path => '/usr/bin:/usr/sbin:/bin',
provider => shell, provider => shell,
logoutput => false, logoutput => false,
unless => "systemd-run --wait --user --machine=runneruser1@ /bin/bash -c 'podman unshare stat --format %u /opt/${username}${x}/runnerdata | grep ^1000$ && podman unshare stat --format %g /opt/${username}${x}/runnerdata | grep ^1000$'", unless => "systemd-run --wait --user --machine=${username}${x}@ /bin/bash -c 'podman unshare stat --format %u /opt/${username}${x}/runnerdata | grep ^1000$ && podman unshare stat --format %g /opt/${username}${x}/runnerdata | grep ^1000$'",
} }
exec { "enable-${username}${x}-linger": exec { "enable-${username}${x}-linger":