From 0b604fd99cb847a43491f362d502a6ef8a271517 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Sat, 24 Jan 2026 14:58:40 -0800 Subject: [PATCH] Add activate deploy command --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2ec28ab..fa8451c 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,12 @@ iso: kexec-img: nix build .#packages.x86_64-linux.kexec -# Deploy a host by name (ex: 's0') +# Deploy a host by name (ex: 's0') but don't activate .PHONY: deploy deploy: - deploy --remote-build --boot --debug-logs --skip-checks .#$(filter-out $@,$(MAKECMDGOALS)) \ No newline at end of file + deploy --remote-build --boot --debug-logs --skip-checks .#$(filter-out $@,$(MAKECMDGOALS)) + +# Deploy a host by name (ex: 's0') +.PHONY: deploy-activate +deploy-activate: + deploy --remote-build --debug-logs --skip-checks .#$(filter-out $@,$(MAKECMDGOALS)) \ No newline at end of file