diff options
author | tv <tv@krebsco.de> | 2017-06-15 19:57:54 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-06-15 19:57:57 +0200 |
commit | f48808dda4911af60bc0cc32c00d6544f6e713b9 (patch) | |
tree | 9463134f2f1deeff46d96b8def1dc20f6ebde160 | |
parent | 9d12c78617ee9bfac3ed6c69df548aa23b596f25 (diff) |
make deploy: use whatsupnix if it exists
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -83,7 +83,12 @@ deploy: $(MAKE) populate debug=false $(ssh) $(target_user)@$(target_host) -p $(target_port) \ env STOCKHOLM_VERSION="$$STOCKHOLM_VERSION" \ - nixos-rebuild $(rebuild-command) --show-trace -I $(target_path) + nixos-rebuild -Q $(rebuild-command) --show-trace -I $(target_path) \ + |& if type whatsupnix 2>/dev/null; then \ + whatsupnix $(target_user)@$(target_host):$(target_port); \ + else \ + cat; \ + fi # usage: make populate system=foo populate: populate-target = \ |