From d703c39421b86ca5e4c8ce982c638b9f5faf5629 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Sat, 3 Jun 2017 00:15:27 +0200 Subject: [PATCH] launchd: hide 'No such file or directory' messages with first activation --- modules/system/launchd.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/system/launchd.nix b/modules/system/launchd.nix index 2960df80..35c1f601 100644 --- a/modules/system/launchd.nix +++ b/modules/system/launchd.nix @@ -97,7 +97,7 @@ in ${concatMapStringsSep "\n" (attr: launchdActivation "LaunchAgents" attr.target) launchAgents} ${concatMapStringsSep "\n" (attr: launchdActivation "LaunchDaemons" attr.target) launchDaemons} - for f in $(ls /run/current-system/Library/LaunchAgents); do + for f in $(ls /run/current-system/Library/LaunchAgents 2> /dev/null); do if test ! -e "${cfg.build.launchd}/Library/LaunchAgents/$f"; then echo "removing service $(basename $f .plist)" >&2 launchctl unload -w "/Library/LaunchAgents/$f" || true @@ -105,7 +105,7 @@ in fi done - for f in $(ls /run/current-system/Library/LaunchDaemons); do + for f in $(ls /run/current-system/Library/LaunchDaemons 2> /dev/null); do if test ! -e "${cfg.build.launchd}/Library/LaunchDaemons/$f"; then echo "removing service $(basename $f .plist)" >&2 launchctl unload -w "/Library/LaunchDaemons/$f" || true @@ -122,7 +122,7 @@ in ${concatMapStringsSep "\n" (attr: userLaunchdActivation attr.target) userLaunchAgents} - for f in $(ls /run/current-system/user/Library/LaunchAgents); do + for f in $(ls /run/current-system/user/Library/LaunchAgents 2> /dev/null); do if test ! -e "${cfg.build.launchd}/user/Library/LaunchAgents/$f"; then echo "removing user service $(basename $f .plist)" >&2 launchctl unload -w ~/Library/LaunchAgents/$f || true