You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the podman v0.6.7 module on forge.puppet.com:
enable
Data type: Boolean
Status of the automatically generated systemd service for the container. Valid values are 'running' or 'stopped'.
Default value: true
There is an issue with the code in container.pp. The variable $service_unit_file is defined as:
${User[$user]['home']}/.config.systemd/user/podman-${container_name}.service
In this code block, you don't specify the full path of the service:
$command_sp @("END"/L)
${systemctl} ${startup} podman-${container_name}.service
${systemctl} ${action} podman-${container_name}.service
| END
This code should be changed to:
${systemctl} ${startup} ${service_unit_file}
The text was updated successfully, but these errors were encountered:
From the podman v0.6.7 module on forge.puppet.com:
enable
Data type: Boolean
Status of the automatically generated systemd service for the container. Valid values are 'running' or 'stopped'.
Default value: true
There is an issue with the code in container.pp. The variable $service_unit_file is defined as:
${User[$user]['home']}/.config.systemd/user/podman-${container_name}.service
In this code block, you don't specify the full path of the service:
$command_sp @("END"/L)
${systemctl} ${startup} podman-${container_name}.service
${systemctl} ${action} podman-${container_name}.service
| END
This code should be changed to:
${systemctl} ${startup} ${service_unit_file}
The text was updated successfully, but these errors were encountered: