Browse Source

Ensure master-logs works for both origin and enterprise

Clayton Coleman 7 years ago
parent
commit
73169aaccd
1 changed files with 3 additions and 2 deletions
  1. 3 2
      roles/openshift_control_plane/files/scripts/docker/master-logs

+ 3 - 2
roles/openshift_control_plane/files/scripts/docker/master-logs

@@ -9,12 +9,13 @@ if [[ -z "${1-}" || -z "${2-}" ]]; then
 fi
 
 # container name is ignored for services
-for type in ( "atomic-openshift"  "origin" ); then
+types=( "atomic-openshift" "origin" )
+for type in "${types[@]}"; do
   if systemctl cat "${type}-master-${1}.service" &>/dev/null; then
     journalctl -u "${type}-master-${1}.service" "${@:3}"
     exit 0
   fi
-fi
+done
 
 # TODO: move to cri-ctl
 # TODO: short term hack for cri-o