configs/JUSTFILE
exu dc9b62a8f2 Add Justfile for task execution
Remove all config files present in roles/config/files
2024-10-11 16:40:13 +02:00

18 lines
364 B
Plaintext

# Presets for setup and config installation
# List all available recipes
help:
@just --list --justfile {{justfile()}}
# first time setup
setup:
ansible-playbook setup.yml --tags all
# copy configs and services
config:
ansible-playbook setup.yml --tags "config,services"
# install packages
packages:
ansible-playbook setup.yml --tags "packages"