13 lines
190 B
Bash
Executable file
13 lines
190 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ $# -eq 0 ]; then
|
|
limit="all"
|
|
else
|
|
limit="$@"
|
|
fi
|
|
|
|
ANSIBLE_GATHERING=implicit ansible-playbook playbooks/manual/facts.yml -l "$limit"
|