8 lines
99 B
Bash
8 lines
99 B
Bash
#!/bin/bash
|
|
|
|
if [[ ${1} == "instance" ]]
|
|
then
|
|
/usr/share/eole/sbin/onehost_create_all
|
|
fi
|
|
exit 0
|