diff --git a/collection-scripts/gather b/collection-scripts/gather index 3d17c57..3bc1907 100755 --- a/collection-scripts/gather +++ b/collection-scripts/gather @@ -193,6 +193,7 @@ fi # No args, normal op mode if [ "$default" = true ]; then + # TODO: Add warning helptext here echo "No args detected, must-gather will start in default op mode" gather_main fi diff --git a/collection-scripts/gather_main b/collection-scripts/gather_main index 5c03109..3e4bede 100755 --- a/collection-scripts/gather_main +++ b/collection-scripts/gather_main @@ -18,6 +18,12 @@ procids+=($!) gather_ceph_pod_logs & procids+=($!) +gather_dr_resources & +procids+=($!) + +gather_odf_client & +procids+=($!) + # Check if procid array has any values, if so, wait for them to finish if [ ${#procids[@]} -ne 0 ]; then echo "Waiting on collection scripts to finish."