13 lines
317 B
Text
13 lines
317 B
Text
|
|
modify the stupid podman socket by editing its systemctl service
|
||
|
|
|
||
|
|
just do systemctl edit podman.socket and drop this in
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
ExecStartPost=/usr/bin/chown {YOUR USER}:{YOUR GROUP} /run/podman
|
||
|
|
ExecStartPost=/usr/bin/chmod 0750 /run/podman
|
||
|
|
|
||
|
|
[Socket]
|
||
|
|
SocketUser={YOUR USER}
|
||
|
|
SocketGroup={YOUR GROUP}
|
||
|
|
SocketMode=0660
|