mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-22 02:07:46 +07:00
23 lines
377 B
Makefile
23 lines
377 B
Makefile
.POSIX:
|
|
|
|
default: init run
|
|
|
|
init:
|
|
python3 -m venv .venv \
|
|
&& . .venv/bin/activate \
|
|
&& pip3 install --upgrade pip \
|
|
&& pip3 install -r requirements.txt
|
|
|
|
run:
|
|
. .venv/bin/activate \
|
|
&& ansible-playbook \
|
|
--ask-become-pass \
|
|
--inventory hosts.ini \
|
|
main.yml
|
|
|
|
shutdown:
|
|
. .venv/bin/activate \
|
|
&& ansible-playbook \
|
|
--inventory hosts.ini \
|
|
shutdown.yml
|