mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #32562 from phdoerfler/patch-1
nixos/logcheck: replace rm with rm -r to delete the empty logcheck.logfiles.d/
This commit is contained in:
commit
cab74492c0
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ let
|
|||
defaultRules = pkgs.runCommand "logcheck-default-rules" {} ''
|
||||
cp -prd ${pkgs.logcheck}/etc/logcheck $out
|
||||
chmod u+w $out
|
||||
rm $out/logcheck.*
|
||||
rm -r $out/logcheck.*
|
||||
'';
|
||||
|
||||
rulesDir = pkgs.symlinkJoin
|
||||
|
|
Loading…
Reference in a new issue