mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 05:51:17 +07:00
14 lines
264 B
Makefile
14 lines
264 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 playbook.yml
|