From 66f249f22a40004d5bab3bad95da8b0c2f358991 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Mon, 19 Dec 2016 21:53:14 +0100 Subject: [PATCH] add /etc/static path to warning messages --- modules/system/etc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/etc.nix b/modules/system/etc.nix index e2f9ef2..4ac4a0d 100644 --- a/modules/system/etc.nix +++ b/modules/system/etc.nix @@ -47,7 +47,7 @@ in for link in $(ls /etc/static/); do if [ -e "/etc/$link" ]; then if [ ! -L "/etc/$link" ]; then - echo "warning: /etc/$link exists, skipping..." >&2 + echo "warning: not linking /etc/static/$link because /etc/$link exists, skipping..." >&2 fi else ln -sfn "/etc/static/$link" "/etc/$link"