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
The upstream tempfile crate explicitly sets the mode of a created named file to 0600, which means that the use here creates a temporary file that can only be read by root and the corresponding user.
I've worked around this for now by doing:
systemd.services.zpool-exporter-textfile.serviceConfig.ExecStartPost=letprog=pkgs.writeShellScript"fix-perms"'' chmod -R +r $STATE_DIRECTORY '';in[# run as root"+${prog}"];
But I figured I'd report it 😃
The text was updated successfully, but these errors were encountered:
The upstream
tempfile
crate explicitly sets the mode of a created named file to0600
, which means that the use here creates a temporary file that can only be read byroot
and the corresponding user.I've worked around this for now by doing:
But I figured I'd report it 😃
The text was updated successfully, but these errors were encountered: