1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-22 15:32:18 +00:00

main: just write inventory

This commit is contained in:
Dawid Dziurla 2020-04-07 00:12:40 +02:00 committed by GitHub
parent bfdba4708c
commit 5240df9b51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,8 +36,9 @@ if test -n "$options"; then
fi
if test -n "$inventory"; then
echo "==> Writing inventory with custom content:"
echo -e "$inventory" | tee "$inventory_file"
echo "==> Setting inventory"
echo "$inventory" > "$inventory_file"
cat $inventory_file
options="$options --inventory $inventory_file"
fi