We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3717bb commit e1ca80dCopy full SHA for e1ca80d
src/main/scripts/ci/deploy.sh
@@ -38,6 +38,13 @@ fi
38
openssl aes-256-cbc -K "$encrypted_bf07cb25089f_key" -iv "$encrypted_bf07cb25089f_iv" -in "$PRIVATE_KEY.enc" -out "$PRIVATE_KEY" -d
39
chmod 600 "$PRIVATE_KEY"
40
41
-ansible-playbook --inventory="$INVENTORY" "$PLAYBOOK" --syntax-check
42
-
43
-exec ansible-playbook --inventory="$INVENTORY" "$PLAYBOOK" --private-key="$PRIVATE_KEY"
+ansible-playbook \
+ --inventory="$INVENTORY" \
+ "$PLAYBOOK" \
44
+ --syntax-check
45
+
46
+exec \
47
+ ansible-playbook \
48
49
50
+ --private-key="$PRIVATE_KEY"
0 commit comments