16 lines
249 B
Bash
16 lines
249 B
Bash
#!/bin/bash
|
|
|
|
ha=$(CreoleGet activer_one_ha non)
|
|
if [[ ${ha} == "oui" ]]
|
|
then
|
|
indx=$(CreoleGet one_ha_server_index)
|
|
else
|
|
indx="0"
|
|
fi
|
|
|
|
if [[ ${1} == "instance" ]] && [[ ${indx} == "0" ]]
|
|
then
|
|
/usr/share/eole/sbin/onehost_create_all
|
|
fi
|
|
exit 0
|