forked from ungleich-public/cdist
Fix shellcheck
This commit is contained in:
parent
89a0080e13
commit
0fc10749ed
1 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ case "$state_should" in
|
||||||
then
|
then
|
||||||
echo "su -c '$pip install -q $name' $runas"
|
echo "su -c '$pip install -q $name' $runas"
|
||||||
else
|
else
|
||||||
echo $pip install -q "$name"
|
echo "$pip" install -q "$name"
|
||||||
fi
|
fi
|
||||||
echo "installed" >> "$__messages_out"
|
echo "installed" >> "$__messages_out"
|
||||||
;;
|
;;
|
||||||
|
@ -69,7 +69,7 @@ case "$state_should" in
|
||||||
then
|
then
|
||||||
echo "su -c '$pip uninstall -q -y $name' $runas"
|
echo "su -c '$pip uninstall -q -y $name' $runas"
|
||||||
else
|
else
|
||||||
echo $pip uninstall -q -y "$name"
|
echo "$pip" uninstall -q -y "$name"
|
||||||
fi
|
fi
|
||||||
echo "removed" >> "$__messages_out"
|
echo "removed" >> "$__messages_out"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue