25 lines
967 B
Shell
25 lines
967 B
Shell
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
if [[ ${EUID} -ne 0 ]]; then
|
||
|
|
echo "run as root" >&2
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||
|
|
install_root=/opt/guanghu/lake-lamp-authz
|
||
|
|
|
||
|
|
install -d -m 0755 "$install_root"
|
||
|
|
for file in server.js workorder-manager.js map-gate.js smtp-mailer.js action-client.js architecture-provision-broker.js; do
|
||
|
|
install -m 0644 "$script_dir/$file" "$install_root/$file"
|
||
|
|
done
|
||
|
|
install -m 0644 "$script_dir/lake-lamp-architecture-provision.service" /etc/systemd/system/lake-lamp-architecture-provision.service
|
||
|
|
install -d -m 0700 /var/lib/guanghu/architecture-provision
|
||
|
|
install -d -m 0755 /opt/guanghu/architecture-releases
|
||
|
|
|
||
|
|
systemctl daemon-reload
|
||
|
|
systemctl enable --now lake-lamp-architecture-provision.service
|
||
|
|
systemctl restart lake-lamp-authz.service
|
||
|
|
systemctl is-active --quiet lake-lamp-architecture-provision.service
|
||
|
|
systemctl is-active --quiet lake-lamp-authz.service
|
||
|
|
echo ARCHITECTURE_PROVISIONER_INSTALLED
|