2015-05-24 23:01:16 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-05-31 23:22:59 +02:00
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
2015-12-02 21:41:55 +01:00
|
|
|
|
2015-05-24 23:01:16 +02:00
|
|
|
# Retrieve arguments
|
2016-06-23 13:27:00 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path=$YNH_APP_ARG_PATH
|
|
|
|
port=$YNH_APP_ARG_PORT
|
|
|
|
sync_node=$YNH_APP_ARG_SYNC_NODE
|
|
|
|
sync_port=$YNH_APP_ARG_SYNC_PORT
|
|
|
|
salt=$YNH_APP_ARG_SALT
|
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
2016-06-24 11:57:31 +02:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
2015-12-25 21:33:56 +01:00
|
|
|
|
2016-08-20 02:31:08 +02:00
|
|
|
# Source app helpers and functions
|
2016-05-31 15:26:06 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-08-20 02:31:08 +02:00
|
|
|
source functions.sh
|
2016-05-31 15:26:06 +02:00
|
|
|
|
2015-12-25 21:33:56 +01:00
|
|
|
# Check domain/path availability
|
2016-06-23 13:12:33 +02:00
|
|
|
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path}"
|
2015-12-25 21:33:56 +01:00
|
|
|
|
2016-08-09 18:35:09 +02:00
|
|
|
# Check path is root
|
|
|
|
if [[ $path != '/' ]]; then
|
|
|
|
ynh_die "Web admin can only be installed on root path for now"
|
|
|
|
fi
|
|
|
|
|
2015-12-25 21:33:56 +01:00
|
|
|
# Check port availability
|
|
|
|
sudo yunohost app checkport $port
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-12-29 14:03:44 +01:00
|
|
|
# Check node availability
|
|
|
|
if curl --output /dev/null --silent --head --fail "$sync_node:$sync_port/node/summary"; then
|
2015-12-29 20:15:33 +01:00
|
|
|
echo "Node $sync_node:$sync_port is available"
|
2015-12-29 14:03:44 +01:00
|
|
|
else
|
2016-05-31 15:26:06 +02:00
|
|
|
ynh_die "Node $sync_node:$sync_port is not available" 2
|
2015-12-29 14:03:44 +01:00
|
|
|
fi
|
|
|
|
|
2016-06-24 11:57:31 +02:00
|
|
|
# Check the admin exists in YunoHost users
|
|
|
|
ynh_user_exists $admin
|
|
|
|
|
2016-06-24 11:49:05 +02:00
|
|
|
# Get CPU architecture and check it
|
2016-06-23 12:05:02 +02:00
|
|
|
arch=$(uname -m)
|
|
|
|
if [ $arch == "x86_64" ]; then
|
|
|
|
arch="x64"
|
|
|
|
fi
|
2016-07-03 11:47:35 +02:00
|
|
|
if [[ $arch != "x64" && $arch != "armv7l" ]]; then
|
2016-08-20 02:31:08 +02:00
|
|
|
ynh_die "$arch is not supported." 2
|
2016-06-24 11:49:05 +02:00
|
|
|
fi
|
2016-06-23 12:05:02 +02:00
|
|
|
|
2015-12-25 21:33:56 +01:00
|
|
|
# Open port on firewall
|
|
|
|
sudo yunohost firewall allow TCP $port > /dev/null 2>&1
|
|
|
|
|
|
|
|
# Store config on YunoHost instance
|
2016-05-31 15:26:06 +02:00
|
|
|
ynh_app_setting_set $app port $port
|
2016-06-23 12:05:02 +02:00
|
|
|
ynh_app_setting_set $app arch $arch
|
2016-06-24 11:57:31 +02:00
|
|
|
ynh_app_setting_set "$app" admin "$admin"
|
2015-05-24 23:01:16 +02:00
|
|
|
|
2016-08-20 02:31:08 +02:00
|
|
|
INSTALL_DUNITER_DEBIAN_PACKAGE
|
2015-05-24 23:01:16 +02:00
|
|
|
|
2016-05-02 14:54:52 +02:00
|
|
|
# Configure Duniter node
|
2016-11-15 10:55:27 +01:00
|
|
|
sudo $app config --autoconf --remoteh $domain --port $port --remotep $port --salt $salt --passwd $password
|
2015-12-25 21:33:56 +01:00
|
|
|
|
2016-05-02 14:54:52 +02:00
|
|
|
# Synchronize Duniter node
|
2015-12-29 20:15:33 +01:00
|
|
|
echo "Synchronizing with $sync_node:$sync_port. It may take a while."
|
2016-10-14 14:50:13 +02:00
|
|
|
sudo $app sync $sync_node $sync_port --nointeractive > /dev/null
|
2015-12-27 13:07:02 +01:00
|
|
|
|
2016-05-02 14:54:52 +02:00
|
|
|
# Launch Duniter node
|
2016-06-23 14:47:19 +02:00
|
|
|
sudo $app webstart
|
2015-12-31 15:24:30 +01:00
|
|
|
|
2016-05-02 14:54:52 +02:00
|
|
|
# Add Duniter service to the YunoHost monitoring
|
|
|
|
sudo yunohost service add $app --log /home/admin/.config/$app/"$app"_default/"$app".log
|
2015-12-25 21:33:56 +01:00
|
|
|
|
2016-08-20 02:31:08 +02:00
|
|
|
CONFIG_SSOWAT_FOR_RESTRICTED_ACCESS
|
|
|
|
CONFIG_NGINX_FOR_WEB_ADMIN
|