11 lines
187 B
Bash
11 lines
187 B
Bash
#!/bin/bash
|
|
|
|
if [[ ${1} == "instance" ]]; then
|
|
ha=$(CreoleGet activer_one_ha non)
|
|
if [[ ${ha} == "oui" ]]
|
|
then
|
|
/usr/share/eole/sbin/onehost_create_all
|
|
fi
|
|
fi
|
|
exit 0
|