Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ services:
#### Rootless Podman
When using rootless Podman, the OpenVox Server process starts as a virtual `root` and then drops privileges to the `puppet` user.
When using rootless Podman, the OpenVox Server process runs directly as the non-root `puppet` user (UID 1001) with the root group (GID 0).
This can lead to permission issues with bind mount volumes, which you may want to use for the OpenVox SSL and CA directories. For example:

```shell
Expand Down
4 changes: 2 additions & 2 deletions openvoxserver/prep_release_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ else
fi

chown -R puppet:puppet /etc/puppetlabs/code
chown -R puppet:puppet /etc/puppetlabs/puppet/ssl
chown -R puppet:puppet /etc/puppetlabs/puppetserver/ca
chown -R puppet:puppet /etc/puppetlabs/puppet
chown -R puppet:puppet /etc/puppetlabs/puppetserver
chown -R puppet:puppet /opt/puppetlabs/server/data/puppetserver
chown -R puppet:puppet /var/log/puppetlabs/puppetserver
chown -R puppet:puppet /var/run/puppetlabs/puppetserver
Expand Down
Loading