Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.3.10
-
None
-
Centos 7.4
Description
/bin/galera_new_cluster: line 31: return: can only `return' from a function or sourced script
Galera does seem to bootstrap, but without a successful exit code automation utilities like Puppet, Chef, Ansible, etc may break.
Attachments
Issue Links
- duplicates
-
MDEV-17524 Use 'exit' instead of 'return'
-
- Closed
-
-
MDEV-17628 script galera_new_cluster returns error in 10.3.10
-
- Closed
-
-
MDEV-17715 Bootstrap script uses return instead of exit
-
- Closed
-
- links to
We encountered this as well as running thru automated setup/install using ClusterControl and fails:
Failed to start MySQL daemon: /usr/bin/galera_new_cluster: line 31: return: can only `return' from a function or sourced script
As it contains return command, could be invoked as a source script as follows:
. /usr/bin/galera_new_cluster
However, I think the script should be improved better than the current and maybe use
exit $extcode
in the end of the shell script.
Also using
zsh
does not have an issue but bash does.
Bar.bash
$#> cat /bin/galera_new_cluster
#!/bin/sh
...
......
systemctl set-environment _WSREP_NEW_CLUSTER='--wsrep-new-cluster' && \
systemctl start ${1:-mariadb}
extcode=$?
systemctl set-environment _WSREP_NEW_CLUSTER=''
return $extcode