14 lines
453 B
Bash
14 lines
453 B
Bash
#!/bin/bash
|
|
|
|
echo "execute post install script"
|
|
prefix=@CPACK_PACKAGING_INSTALL_PREFIX@
|
|
|
|
# prepare the systemd service unit
|
|
cp -f $prefix/profile/oceanbase.service /etc/systemd/system/oceanbase.service
|
|
chmod 644 /etc/systemd/system/oceanbase.service
|
|
chmod +x $prefix/profile/oceanbase-service.sh
|
|
cp -f $prefix/profile/oceanbase.cnf /etc/oceanbase.cnf
|
|
systemctl daemon-reload
|
|
|
|
# deploy local observer
|
|
/bin/bash $prefix/profile/oceanbase-service.sh deploy |