lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

charybdis service: fix preStart script

tv baab714b 45e07f55

+2 -4
+2 -4
nixos/modules/services/networking/charybdis.nix
··· 85 85 PermissionsStartOnly = true; # preStart needs to run with root permissions 86 86 }; 87 87 preStart = '' 88 - if ! test -d /var/lib/charybdis; then 89 - ${coreutils}/bin/mkdir -p ${cfg.statedir} 90 - ${coreutils}/bin/chown ${cfg.user}:${cfg.group} ${cfg.statedir} 91 - fi 88 + ${coreutils}/bin/mkdir -p ${cfg.statedir} 89 + ${coreutils}/bin/chown ${cfg.user}:${cfg.group} ${cfg.statedir} 92 90 ''; 93 91 94 92 };