fix(makefile): improve makefile
- add TAGS that will allow running specific parts of playbooks - rename ‹fedora-bootstrap› to ‹bootstrap›, since it's generic - introduce target for switching fedora repositories - with optional REMOTE variable Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
2fdc93bd5e
commit
a5e0959ddb
1 changed files with 11 additions and 5 deletions
16
Makefile
16
Makefile
|
@ -1,24 +1,29 @@
|
|||
.PHONY: deps fedora-deps fedora-bootstrap fedora-release-upgrade gpg keys
|
||||
.PHONY: deps bootstrap fedora-deps fedora-release-upgrade fedora-switch-repository gpg keys
|
||||
|
||||
CONNECTION ?= local
|
||||
INVENTORY ?= localhost
|
||||
TAGS ?= all
|
||||
|
||||
ANSIBLE_PYTHON := /usr/bin/python3
|
||||
AP := ansible-playbook -vv -K -c $(CONNECTION) -i $(INVENTORY), -e ansible_python_interpreter=$(ANSIBLE_PYTHON)
|
||||
AP := ansible-playbook -vv -K -c $(CONNECTION) -i $(INVENTORY), -e ansible_python_interpreter=$(ANSIBLE_PYTHON) --tags $(TAGS) $(AP_ARGS)
|
||||
|
||||
deps:
|
||||
ansible-galaxy collection install community.general
|
||||
|
||||
bootstrap:
|
||||
$(AP) playbooks/bootstrap.yml
|
||||
|
||||
# Fedora
|
||||
fedora-deps:
|
||||
sudo dnf install -y ansible ansible-collection-community-general
|
||||
|
||||
fedora-bootstrap:
|
||||
$(AP) playbooks/fedora.yml
|
||||
|
||||
fedora-release-upgrade:
|
||||
$(AP) playbooks/fedora_upgrade.yml
|
||||
|
||||
REMOTE ?= local
|
||||
fedora-switch-repository:
|
||||
$(AP) -e source=$(REMOTE) playbooks/fedora_repository.yml
|
||||
|
||||
# Scripts
|
||||
gpg:
|
||||
bash scripts/generate_gpg.sh
|
||||
|
@ -26,5 +31,6 @@ gpg:
|
|||
keys:
|
||||
bash scripts/export_keys.sh
|
||||
|
||||
# Catch any other playbook
|
||||
%.yml:
|
||||
$(AP) $@
|
||||
|
|
Loading…
Reference in a new issue