Skip to content

Commit

Permalink
nixos/cron: fix shellcheck findings with enableStrictShellChecks enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
PassiveLemon committed Dec 30, 2024
1 parent 8cd92ca commit 62556de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/scheduling/cron.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ in
wantedBy = [ "multi-user.target" ];

preStart = ''
mkdir -m 710 -p /var/cron
mkdir -m 710 /var/cron || true
# By default, allow all users to create a crontab. This
# is denoted by the existence of an empty cron.deny file.
Expand Down

0 comments on commit 62556de

Please sign in to comment.