Created
August 5, 2018 16:42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/nixos/modules/system/activation/activation-script.nix b/nixos/modules/system/activation/activation-script.nix | |
index c563614caaa..2c2f2073226 100644 | |
--- a/nixos/modules/system/activation/activation-script.nix | |
+++ b/nixos/modules/system/activation/activation-script.nix | |
@@ -8,7 +8,13 @@ let | |
addAttributeName = mapAttrs (a: v: v // { | |
text = '' | |
#### Activation script snippet ${a}: | |
- ${v.text} | |
+ ${a}(){ | |
+ ${v.text} | |
+ } | |
+ | |
+ if !${a}; then | |
+ echo "Activation script snippet ${a} failed" | |
+ fi | |
''; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment