stockholm/Makefile

68 lines
2.1 KiB
Makefile
Raw Normal View History

ifndef system
$(error unbound variable: system)
2015-07-28 19:03:49 +00:00
endif
2016-02-16 05:20:40 +00:00
# target = [target_user@]target_host[:target_port][/target_path]
ifdef target
_target_user != echo $(target) | sed -n 's/@.*//p'
_target_path != echo $(target) | sed -n 's/^[^/]*//p'
_target_port != echo $(target) | sed -En 's|^.*:([^/]*)(/.*)?$$|\1|p'
_target_host != echo $(target) | sed -En 's/^(.*@)?([^:/]*).*/\2/p'
ifneq ($(_target_host),)
$(if $(target_host),$(error cannot define both, target_host and host in target))
target_host ?= $(_target_host)
endif
ifneq ($(_target_user),)
$(if $(target_user),$(error cannot define both, target_user and user in target))
target_user ?= $(_target_user)
endif
ifneq ($(_target_port),)
$(if $(target_port),$(error cannot define both, target_port and port in target))
target_port ?= $(_target_port)
endif
ifneq ($(_target_path),)
$(if $(target_path),$(error cannot define both, target_path and path in target))
target_path ?= $(_target_path)
endif
endif
export target_host ?= $(system)
export target_user ?= root
export target_port ?= 22
export target_path ?= /var/src
2016-02-02 02:19:20 +00:00
2016-02-04 10:32:13 +00:00
evaluate = \
nix-instantiate \
--eval \
--readonly-mode \
--show-trace \
2016-02-15 15:27:11 +00:00
-I nixos-config=./$(LOGNAME)/1systems/$(system).nix \
-I stockholm=. \
2016-02-04 10:32:13 +00:00
$(1)
execute = \
result=$$($(call evaluate,-A config.krebs.build.$(1) --json)) && \
script=$$(echo "$$result" | jq -r .) && \
echo "$$script" | sh
2016-02-04 10:32:13 +00:00
# usage: make deploy system=foo [target_host=bar]
2016-02-04 10:32:13 +00:00
deploy:
$(call execute,populate)
ssh $(target_user)@$(target_host) -p $(target_port) \
2016-02-14 12:27:42 +00:00
nixos-rebuild switch --show-trace -I $(target_path)
2016-02-04 10:32:13 +00:00
# usage: make LOGNAME=shared system=wolf eval.config.krebs.build.host.name
eval eval.:;@$(call evaluate)
eval.%:;@$(call evaluate,-A $*)
2016-02-12 18:56:04 +00:00
# usage: make install system=foo [target_host=bar]
2016-02-12 22:20:50 +00:00
install: ssh ?= ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null
2016-02-12 18:56:04 +00:00
install:
$(ssh) $(target_user)@$(target_host) -p $(target_port) \
2016-02-12 18:56:04 +00:00
env target_path=$(target_path) \
sh -s prepare < krebs/4lib/infest/prepare.sh
target_path=/mnt$(target_path) $(call execute,populate)
$(ssh) $(target_user)@$(target_host) -p $(target_port) \
2016-02-12 18:56:04 +00:00
env NIXOS_CONFIG=$(target_path)/nixos-config \
nixos-install