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