diff options
| author | alex <alex@pdp7.net> | 2025-01-11 21:17:18 +0100 |
|---|---|---|
| committer | alexpdp7 <alex@corcoles.net> | 2025-01-11 20:18:02 +0000 |
| commit | f4edee6df0d4fbbf2abb795bf96b62e6b73924fa (patch) | |
| tree | 43bde719f4c6a315db61ff26afe77a5f907aa90a | |
| parent | c29db902cabb1fafbe4aa4556f58eacafc9359a2 (diff) | |
Fix dumb bugs
| -rw-r--r-- | personal_infra/puppet/modules/podman/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/personal_infra/puppet/modules/podman/manifests/init.pp b/personal_infra/puppet/modules/podman/manifests/init.pp index 17247aa2..b07c70a9 100644 --- a/personal_infra/puppet/modules/podman/manifests/init.pp +++ b/personal_infra/puppet/modules/podman/manifests/init.pp @@ -12,6 +12,6 @@ class podman($user, $storage_driver) { exec {"/usr/bin/sed -i 's|#mount_program = \"/usr/bin/fuse-overlayfs\"|mount_program = \"/usr/bin/fuse-overlayfs\"|g' /etc/containers/storage.conf": require => Package['podman'], - unless => "/usr/bin/grep '^#mount_program = \"/usr/bin/fuse-overlayfs\"'", + unless => "/usr/bin/grep '^mount_program = \"/usr/bin/fuse-overlayfs\"' /etc/containers/storage.conf", } } |
