Initial Commit

This commit is contained in:
gbaconni
2021-11-01 16:51:34 +01:00
parent 86f65fcb56
commit ea83967d4d
3 changed files with 475 additions and 2 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
all: sync
sync: test update
@git status | grep -q 'nothing to commit' || (git add -A && git commit -am "$$(date '+%F %T')" && git push) || true
test:
@dig +short vogsphere.baco.net A | grep -q '213\.5\.156\.25' || echo 'vogsphere.baco.net unreachable'
update:
@git pull