diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-10-11 07:26:57 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-10-11 07:26:57 +0200 |
commit | 291b6e4aa17c782c812b8c23d13163ec4fed39d3 (patch) | |
tree | 882ff177540321801333fae40dcce16991e66016 | |
parent | aefa08242ad41edc3ebfb7fb532dc65bcdd284d0 (diff) | |
download | ipmiboot-291b6e4aa17c782c812b8c23d13163ec4fed39d3.tar.gz ipmiboot-291b6e4aa17c782c812b8c23d13163ec4fed39d3.tar.bz2 ipmiboot-291b6e4aa17c782c812b8c23d13163ec4fed39d3.tar.xz ipmiboot-291b6e4aa17c782c812b8c23d13163ec4fed39d3.zip |
run commands with parameters
-rwxr-xr-x | ipmi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ function run { ( cd $itm || { echo "ITM (Ansible scripts) are not found"; exit 1; } - ansible all -b -u root --vault-password-file=.vault-pass -i inventories/ipe.erb -l $hosts -a "'$@'" + eval ansible all -b -u root --vault-password-file=.vault-pass -i inventories/ipe.erb -l $hosts --args="'$@'" ) } |