diff options
author | Sughosha <[email protected]> | 2025-03-03 22:37:15 +0530 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2025-03-08 18:11:14 +0100 |
commit | f7cf9fbec786e0e4b33ca2c56fd9e0dda824eb38 (patch) | |
tree | 94d69fb99303cda7f18d9d2be7adacb3e1330fe9 /gnu | |
parent | 01c0ab477451313ea2021b31b229f6390b0d214e (diff) |
services: readymedia: Change directory permissions to 775.
Allow users in the ‘readymedia’ group to write in the directory created
by ‘readymedia-activation’.
* gnu/services/upnp.scm (readymedia-activation): Change directory permissions
to 775.
Change-Id: Ifda8e4fe8594fb5a1cdf6e329a8c83551eab9c06
Signed-off-by: Ludovic Courtès <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/upnp.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/upnp.scm b/gnu/services/upnp.scm index e5d05add28..c125c07af2 100644 --- a/gnu/services/upnp.scm +++ b/gnu/services/upnp.scm @@ -187,7 +187,7 @@ (unless (file-exists? directory) (mkdir-p/perms directory (getpw #$%readymedia-user-account) - #o755))) + #o775))) (list #$cache-directory #$log-directory #$@(map readymedia-media-directory-path |