mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
unifi: chown the data dir as well.
It needs to be writeable.
This commit is contained in:
parent
9adad8612b
commit
e3f0a09b6d
1 changed files with 3 additions and 3 deletions
|
@ -79,9 +79,9 @@ in
|
|||
environment.LD_LIBRARY_PATH = with pkgs.stdenv; "${cc.cc.lib}/lib";
|
||||
|
||||
preStart = ''
|
||||
# Ensure privacy of state
|
||||
chown unifi "${stateDir}"
|
||||
chmod 0700 "${stateDir}"
|
||||
# Ensure privacy of state and data.
|
||||
chown unifi "${stateDir}" "${dataDir}"
|
||||
chmod 0700 "${stateDir}" "${dataDir}"
|
||||
|
||||
# Create the volatile webapps
|
||||
rm -rf "${stateDir}/webapps"
|
||||
|
|
Loading…
Reference in a new issue