blob: 2aa151d9ae7127fe986bd040f8973c91727aa2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
cosmos:
fab all cosmos
upgrade:
fab upgrade
DB=global/overlay/etc/puppet/cosmos-db.yaml
db:
@python ./fabfile/db.py > $(DB)
@git diff --exit-code $(DB) || ( git add $(DB) && git commit -m "update db" $(DB) )
tag: db
./bump-tag
|