From: Oleg Broytman Date: Wed, 24 Jul 2019 15:28:01 +0000 (+0300) Subject: Refactor(run-role): Use `exec` X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=62411a3505c583632cdba2947d7e24a82e5d01ac;p=ansible.git Refactor(run-role): Use `exec` --- diff --git a/playbooks/run-role b/playbooks/run-role index f2ea245..2013fba 100755 --- a/playbooks/run-role +++ b/playbooks/run-role @@ -9,4 +9,4 @@ role="$1" shift cd "`dirname \"$0\"`" && -ansible-playbook run-role.yml "$@" -e role="$role" +exec ansible-playbook run-role.yml "$@" -e role="$role"