16 lines
405 B
Makefile
16 lines
405 B
Makefile
.PHONY: fedora-bootstrap deps fedora-deps gpg
|
|
|
|
ANSIBLE_PYTHON := /usr/bin/python3
|
|
AP := ansible-playbook -vv -c local -i localhost, -e ansible_python_interpreter=$(ANSIBLE_PYTHON)
|
|
|
|
fedora-bootstrap:
|
|
$(AP) playbooks/fedora.yml
|
|
|
|
deps:
|
|
ansible-galaxy collection install community.general
|
|
|
|
fedora-deps:
|
|
sudo dnf install -y ansible # ansible-collection-community-general
|
|
|
|
gpg:
|
|
bash scripts/generate_gpg.sh
|