Initial import.

This commit is contained in:
2023-04-10 19:55:24 -07:00
commit e2543baf2d
17 changed files with 492 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
I := inventory
L := "$(shell hostname -s)"
C := -c local
K := -K
P := site.yml
all: deploy
check:
ansible-playbook -i $I -l $L $C $K --syntax-check $P
deploy:
ansible-playbook -i $I -l $L $C $K $P
.PHONY: all check deploy