From 16d0c02113162aa8244738d58d79722a3bbe5094 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Thu, 6 Aug 2020 15:39:02 -0400 Subject: [PATCH] Fix cert dev null --- setup/so-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/so-functions b/setup/so-functions index b3dc5b060..d4218a10c 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -27,7 +27,7 @@ accept_salt_key_remote() { echo "Accept the key remotely on the manager" >> "$setup_log" 2>&1 # Delete the key just in case. ssh -i /root/.ssh/so.key soremote@"$MSRV" sudo salt-key -d "$MINION_ID" -y - salt-call state.apply ca + salt-call state.apply ca >> /dev/null 2>&1 ssh -i /root/.ssh/so.key soremote@"$MSRV" sudo salt-key -a "$MINION_ID" -y }