Send stderr to /dev/null as well, since it's already been decided this output is unsuited for the logfile based on the comment

This commit is contained in:
Jason Ertel
2020-06-03 08:55:06 -04:00
parent e6fcf75181
commit 9f0e48e337

View File

@@ -1217,7 +1217,7 @@ salt_checkin() {
# Run a salt command to generate the minion key # Run a salt command to generate the minion key
salt_firstcheckin() { salt_firstcheckin() {
salt-call state.show_top >> /dev/null # send output to /dev/null because we don't actually care about the ouput salt-call state.show_top >> /dev/null 2>&1 # send output to /dev/null because we don't actually care about the ouput
} }
set_base_heapsizes() { set_base_heapsizes() {