Files
ansible-role-users/Makefile
Mykhailo Nikiforov be7b37ee2e
Some checks failed
checks-test / Lint (push) Failing after 34s
checks-test / molecule (rockylinux9) (push) Failing after 2m53s
checks-test / molecule (ubuntu2204) (push) Failing after 2m45s
checks-test / molecule (debian11) (push) Successful in 3m50s
feat(role): init
2024-01-14 19:04:48 +02:00

16 lines
394 B
Makefile

MOLECULE_DISTRO ?= ubuntu2204
.DEFAULT_TARGET := test
.PHONY = converge
converge:
@PY_COLORS=1 ANSIBLE_FORCE_COLOR=1 MOLECULE_DISTRO=$(MOLECULE_DISTRO) molecule converge
.PHONY = test
test:
@PY_COLORS=1 ANSIBLE_FORCE_COLOR=1 MOLECULE_DISTRO=$(MOLECULE_DISTRO) molecule test
.PHONY = destroy
destroy:
@PY_COLORS=1 ANSIBLE_FORCE_COLOR=1 MOLECULE_DISTRO=$(MOLECULE_DISTRO) molecule destroy