File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
data/data/agent/files/usr/local/bin Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 44source " issue_status.sh"
55
66inactive_services () {
7- local services=" assisted-service.service agent-register-cluster.service agent-register-infraenv.service apply-host-config.service start-cluster-installation.service"
7+ local services=" assisted-service.service agent-register-infraenv.service apply-host-config.service"
8+ if [ ! -e " /etc/assisted/add-nodes.env" ]; then
9+ # install workflow
10+ services+=" agent-register-cluster.service start-cluster-installation.service"
11+ else
12+ # add nodes workflow
13+ services+=" agent-import-cluster.service agent-add-node.service"
14+ fi
815 for s in ${services} ; do
916 if ! systemctl is-active " ${s} " > /dev/null; then
1017 printf " %s " " ${s} "
You can’t perform that action at this time.
0 commit comments