10 lines
133 B
Bash
Executable File
10 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -n "$1" ]; then
|
|
TAGS="--tags=$1"
|
|
else
|
|
TAGS=""
|
|
fi
|
|
|
|
ansible-playbook $TAGS -i inventory.yml playbook.yml
|