mirror of
https://github.com/YunoHost-Apps/ztncui_ynh.git
synced 2024-09-03 18:06:05 +02:00
[enh] improved systemd and nodejs helpers (#5)
* [enh] systemd help with dynamic variables * [fix] unbound variable * [enh] test nodejs helper * [fix] node and npm paths * [fix] ... * [fix] upgrade * force replacing certs * standard admin and password if missing * [enh] specify experimental helpers
This commit is contained in:
parent
b40dddcbbe
commit
724dadb4a5
7 changed files with 356 additions and 35 deletions
|
@ -14,7 +14,7 @@
|
||||||
port="666" (PORT)
|
port="666" (PORT)
|
||||||
; pre-install
|
; pre-install
|
||||||
sudo yunohost app fetchlist
|
sudo yunohost app fetchlist
|
||||||
sudo yunohost app install zerotier
|
sudo yunohost app install https://github.com/tituspijean/zerotier_ynh
|
||||||
; Checks
|
; Checks
|
||||||
pkg_linter=1
|
pkg_linter=1
|
||||||
setup_sub_dir=0
|
setup_sub_dir=0
|
||||||
|
|
|
@ -6,9 +6,9 @@ After=network.target
|
||||||
Type=simple
|
Type=simple
|
||||||
User=ztncui
|
User=ztncui
|
||||||
Group=ztncui
|
Group=ztncui
|
||||||
Environment="PATH=__PATH__"
|
Environment="__YNH_NODE_LOAD_PATH__"
|
||||||
WorkingDirectory=__FINAL_PATH__/src/
|
WorkingDirectory=__FINALPATH__/src/
|
||||||
ExecStart=__NODEJS_PATH__/npm start
|
ExecStart=__YNH_NPM__ start
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
|
@ -21,17 +21,333 @@ pkg_dependencies="g++"
|
||||||
|
|
||||||
# Execute a command as another user
|
# Execute a command as another user
|
||||||
# usage: exec_as USER COMMAND [ARG ...]
|
# usage: exec_as USER COMMAND [ARG ...]
|
||||||
exec_as() {
|
ynh_exec_as() {
|
||||||
local USER=$1
|
local USER=$1
|
||||||
shift 1
|
shift 1
|
||||||
|
|
||||||
if [[ $USER = $(whoami) ]]; then
|
if [[ $USER = $(whoami) ]]; then
|
||||||
eval "$@"
|
eval "$@"
|
||||||
else
|
else
|
||||||
sudo PATH=$PATH -u "$USER" "$@"
|
sudo -u "$USER" "$@"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Create a dedicated systemd config
|
||||||
|
#
|
||||||
|
# usage: ynh_add_systemd_config [--service=service] [--template=template] [--others_var="list of others variables to replace"]
|
||||||
|
# | arg: -s, --service - Service name (optional, $app by default)
|
||||||
|
# | arg: -t, --template - Name of template file (optional, this is 'systemd' by default, meaning ./conf/systemd.service will be used as template)
|
||||||
|
# | arg: -v, --others_var - List of others variables to replace separated by a space. For example: 'var_1 var_2 ...'
|
||||||
|
#
|
||||||
|
# This will use the template ../conf/<templatename>.service
|
||||||
|
# to generate a systemd config, by replacing the following keywords
|
||||||
|
# with global variables that should be defined before calling
|
||||||
|
# this helper :
|
||||||
|
#
|
||||||
|
# __APP__ by $app
|
||||||
|
# __FINALPATH__ by $final_path
|
||||||
|
#
|
||||||
|
# And dynamic variables (from the last example) :
|
||||||
|
# __VAR_1__ by $var_1
|
||||||
|
# __VAR_2__ by $var_2
|
||||||
|
#
|
||||||
|
# Requires YunoHost version 2.7.2 or higher.
|
||||||
|
ynh_add_systemd_config_vars () {
|
||||||
|
# Declare an array to define the options of this helper.
|
||||||
|
local legacy_args=stv
|
||||||
|
declare -Ar args_array=( [s]=service= [t]=template= [v]=others_var= )
|
||||||
|
local service
|
||||||
|
local template
|
||||||
|
local others_var
|
||||||
|
# Manage arguments with getopts
|
||||||
|
ynh_handle_getopts_args "$@"
|
||||||
|
service="${service:-$app}"
|
||||||
|
template="${template:-systemd.service}"
|
||||||
|
others_var="${others_var:-}"
|
||||||
|
|
||||||
|
finalsystemdconf="/etc/systemd/system/$service.service"
|
||||||
|
ynh_backup_if_checksum_is_different --file="$finalsystemdconf"
|
||||||
|
cp ../conf/$template "$finalsystemdconf"
|
||||||
|
|
||||||
|
# To avoid a break by set -u, use a void substitution ${var:-}. If the variable is not set, it's simply set with an empty variable.
|
||||||
|
# Substitute in a nginx config file only if the variable is not empty
|
||||||
|
if test -n "${final_path:-}"; then
|
||||||
|
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$finalsystemdconf"
|
||||||
|
fi
|
||||||
|
if test -n "${app:-}"; then
|
||||||
|
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$finalsystemdconf"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Replace all other variables given as arguments
|
||||||
|
for var_to_replace in $others_var
|
||||||
|
do
|
||||||
|
# ${var_to_replace^^} make the content of the variable on upper-cases
|
||||||
|
# ${!var_to_replace} get the content of the variable named $var_to_replace
|
||||||
|
ynh_replace_string --match_string="__${var_to_replace^^}__" --replace_string="${!var_to_replace}" --target_file="$finalsystemdconf"
|
||||||
|
done
|
||||||
|
|
||||||
|
ynh_store_file_checksum --file="$finalsystemdconf"
|
||||||
|
|
||||||
|
chown root: "$finalsystemdconf"
|
||||||
|
systemctl enable $service
|
||||||
|
systemctl daemon-reload
|
||||||
|
}
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# FUTURE OFFICIAL HELPERS
|
# FUTURE OFFICIAL HELPERS
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
|
n_install_dir="/opt/node_n"
|
||||||
|
node_version_path="$n_install_dir/n/versions/node"
|
||||||
|
# N_PREFIX is the directory of n, it needs to be loaded as a environment variable.
|
||||||
|
export N_PREFIX="$n_install_dir"
|
||||||
|
|
||||||
|
# Install Node version management
|
||||||
|
#
|
||||||
|
# [internal]
|
||||||
|
#
|
||||||
|
# usage: ynh_install_n
|
||||||
|
#
|
||||||
|
# Requires YunoHost version 2.7.12 or higher.
|
||||||
|
EXPERIMENTAL_ynh_install_n () {
|
||||||
|
ynh_print_info --message="Installation of N - Node.js version management"
|
||||||
|
# Build an app.src for n
|
||||||
|
mkdir -p "../conf"
|
||||||
|
echo "SOURCE_URL=https://github.com/tj/n/archive/v4.1.0.tar.gz
|
||||||
|
SOURCE_SUM=3983fa3f00d4bf85ba8e21f1a590f6e28938093abe0bb950aeea52b1717471fc" > "../conf/n.src"
|
||||||
|
# Download and extract n
|
||||||
|
ynh_setup_source --dest_dir="$n_install_dir/git" --source_id=n
|
||||||
|
# Install n
|
||||||
|
(cd "$n_install_dir/git"
|
||||||
|
PREFIX=$N_PREFIX make install 2>&1)
|
||||||
|
}
|
||||||
|
|
||||||
|
# Load the version of node for an app, and set variables.
|
||||||
|
#
|
||||||
|
# ynh_use_nodejs has to be used in any app scripts before using node for the first time.
|
||||||
|
# This helper will provide alias and variables to use in your scripts.
|
||||||
|
#
|
||||||
|
# To use npm or node, use the alias `ynh_npm` and `ynh_node`
|
||||||
|
# Those alias will use the correct version installed for the app
|
||||||
|
# For example: use `ynh_npm install` instead of `npm install`
|
||||||
|
#
|
||||||
|
# With `sudo` or `ynh_exec_as`, use instead the fallback variables `$ynh_npm` and `$ynh_node`
|
||||||
|
# Exemple: `ynh_exec_as $app $ynh_npm install`
|
||||||
|
#
|
||||||
|
# $PATH contains the path of the requested version of node.
|
||||||
|
# However, $PATH is duplicated into $node_PATH to outlast any manipulation of $PATH
|
||||||
|
# You can use the variable `$ynh_node_load_PATH` to quickly load your node version
|
||||||
|
# in $PATH for an usage into a separate script.
|
||||||
|
# Exemple: $ynh_node_load_PATH $final_path/script_that_use_npm.sh`
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Finally, to start a nodejs service with the correct version, 2 solutions
|
||||||
|
# Either the app is dependent of node or npm, but does not called it directly.
|
||||||
|
# In such situation, you need to load PATH
|
||||||
|
# `Environment="__NODE_ENV_PATH__"`
|
||||||
|
# `ExecStart=__FINALPATH__/my_app`
|
||||||
|
# You will replace __NODE_ENV_PATH__ with $ynh_node_load_PATH
|
||||||
|
#
|
||||||
|
# Or node start the app directly, then you don't need to load the PATH variable
|
||||||
|
# `ExecStart=__YNH_NODE__ my_app run`
|
||||||
|
# You will replace __YNH_NODE__ with $ynh_node
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# 2 other variables are also available
|
||||||
|
# - $nodejs_path: The absolute path to node binaries for the chosen version.
|
||||||
|
# - $nodejs_version: Just the version number of node for this app. Stored as 'nodejs_version' in settings.yml.
|
||||||
|
#
|
||||||
|
# usage: ynh_use_nodejs
|
||||||
|
#
|
||||||
|
# Requires YunoHost version 2.7.12 or higher.
|
||||||
|
EXPERIMENTAL_ynh_use_nodejs () {
|
||||||
|
nodejs_version=$(ynh_app_setting_get --app=$app --key=nodejs_version)
|
||||||
|
|
||||||
|
# Get the absolute path of this version of node
|
||||||
|
nodejs_path="$node_version_path/$nodejs_version/bin"
|
||||||
|
|
||||||
|
# Allow alias to be used into bash script
|
||||||
|
shopt -s expand_aliases
|
||||||
|
|
||||||
|
# Create an alias for the specific version of node and a variable as fallback
|
||||||
|
ynh_node="$nodejs_path/node"
|
||||||
|
alias ynh_node="$ynh_node"
|
||||||
|
# And npm
|
||||||
|
ynh_npm="$nodejs_path/npm"
|
||||||
|
alias ynh_npm="$ynh_npm"
|
||||||
|
|
||||||
|
# Load the path of this version of node in $PATH
|
||||||
|
[[ :$PATH: == *":$nodejs_path"* ]] || PATH="$nodejs_path:$PATH"
|
||||||
|
node_PATH="$PATH"
|
||||||
|
# Create an alias to easily load the PATH
|
||||||
|
ynh_node_load_PATH="PATH=$node_PATH"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Install a specific version of nodejs
|
||||||
|
#
|
||||||
|
# n (Node version management) uses the PATH variable to store the path of the version of node it is going to use.
|
||||||
|
# That's how it changes the version
|
||||||
|
#
|
||||||
|
# ynh_install_nodejs will install the version of node provided as argument by using n.
|
||||||
|
#
|
||||||
|
# usage: ynh_install_nodejs --nodejs_version=nodejs_version
|
||||||
|
# | arg: -n, --nodejs_version - Version of node to install. When possible, your should prefer to use major version number (e.g. 8 instead of 8.10.0). The crontab will then handle the update of minor versions when needed.
|
||||||
|
#
|
||||||
|
# Refer to ynh_use_nodejs for more information about available commands and variables
|
||||||
|
#
|
||||||
|
# Requires YunoHost version 2.7.12 or higher.
|
||||||
|
EXPERIMENTAL_ynh_install_nodejs () {
|
||||||
|
# Use n, https://github.com/tj/n to manage the nodejs versions
|
||||||
|
|
||||||
|
# Declare an array to define the options of this helper.
|
||||||
|
local legacy_args=n
|
||||||
|
declare -Ar args_array=( [n]=nodejs_version= )
|
||||||
|
local nodejs_version
|
||||||
|
# Manage arguments with getopts
|
||||||
|
ynh_handle_getopts_args "$@"
|
||||||
|
|
||||||
|
# Create $n_install_dir
|
||||||
|
mkdir -p "$n_install_dir"
|
||||||
|
|
||||||
|
# Load n path in PATH
|
||||||
|
CLEAR_PATH="$n_install_dir/bin:$PATH"
|
||||||
|
# Remove /usr/local/bin in PATH in case of node prior installation
|
||||||
|
PATH=$(echo $CLEAR_PATH | sed 's@/usr/local/bin:@@')
|
||||||
|
|
||||||
|
# Move an existing node binary, to avoid to block n.
|
||||||
|
test -x /usr/bin/node && mv /usr/bin/node /usr/bin/node_n
|
||||||
|
test -x /usr/bin/npm && mv /usr/bin/npm /usr/bin/npm_n
|
||||||
|
|
||||||
|
# If n is not previously setup, install it
|
||||||
|
if ! test $(n --version > /dev/null 2>&1)
|
||||||
|
then
|
||||||
|
ynh_install_n
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Modify the default N_PREFIX in n script
|
||||||
|
ynh_replace_string --match_string="^N_PREFIX=\${N_PREFIX-.*}$" --replace_string="N_PREFIX=\${N_PREFIX-$N_PREFIX}" --target_file="$n_install_dir/bin/n"
|
||||||
|
|
||||||
|
# Restore /usr/local/bin in PATH
|
||||||
|
PATH=$CLEAR_PATH
|
||||||
|
|
||||||
|
# And replace the old node binary.
|
||||||
|
test -x /usr/bin/node_n && mv /usr/bin/node_n /usr/bin/node
|
||||||
|
test -x /usr/bin/npm_n && mv /usr/bin/npm_n /usr/bin/npm
|
||||||
|
|
||||||
|
# Install the requested version of nodejs
|
||||||
|
uname=$(uname -m)
|
||||||
|
if [[ $uname =~ aarch64 || $uname =~ arm64 ]]
|
||||||
|
then
|
||||||
|
n $nodejs_version --arch=arm64
|
||||||
|
else
|
||||||
|
n $nodejs_version
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Find the last "real" version for this major version of node.
|
||||||
|
real_nodejs_version=$(find $node_version_path/$nodejs_version* -maxdepth 0 | sort --version-sort | tail --lines=1)
|
||||||
|
real_nodejs_version=$(basename $real_nodejs_version)
|
||||||
|
|
||||||
|
# Create a symbolic link for this major version if the file doesn't already exist
|
||||||
|
if [ ! -e "$node_version_path/$nodejs_version" ]
|
||||||
|
then
|
||||||
|
ln --symbolic --force --no-target-directory $node_version_path/$real_nodejs_version $node_version_path/$nodejs_version
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Store the ID of this app and the version of node requested for it
|
||||||
|
echo "$YNH_APP_INSTANCE_NAME:$nodejs_version" | tee --append "$n_install_dir/ynh_app_version"
|
||||||
|
|
||||||
|
# Store nodejs_version into the config of this app
|
||||||
|
ynh_app_setting_set --app=$app --key=nodejs_version --value=$nodejs_version
|
||||||
|
|
||||||
|
# Build the update script and set the cronjob
|
||||||
|
ynh_cron_upgrade_node
|
||||||
|
|
||||||
|
ynh_use_nodejs
|
||||||
|
}
|
||||||
|
|
||||||
|
# Remove the version of node used by the app.
|
||||||
|
#
|
||||||
|
# This helper will check if another app uses the same version of node,
|
||||||
|
# if not, this version of node will be removed.
|
||||||
|
# If no other app uses node, n will be also removed.
|
||||||
|
#
|
||||||
|
# usage: ynh_remove_nodejs
|
||||||
|
#
|
||||||
|
# Requires YunoHost version 2.7.12 or higher.
|
||||||
|
EXPERIMENTAL_ynh_remove_nodejs () {
|
||||||
|
nodejs_version=$(ynh_app_setting_get --app=$app --key=nodejs_version)
|
||||||
|
|
||||||
|
# Remove the line for this app
|
||||||
|
sed --in-place "/$YNH_APP_INSTANCE_NAME:$nodejs_version/d" "$n_install_dir/ynh_app_version"
|
||||||
|
|
||||||
|
# If no other app uses this version of nodejs, remove it.
|
||||||
|
if ! grep --quiet "$nodejs_version" "$n_install_dir/ynh_app_version"
|
||||||
|
then
|
||||||
|
$n_install_dir/bin/n rm $nodejs_version
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If no other app uses n, remove n
|
||||||
|
if [ ! -s "$n_install_dir/ynh_app_version" ]
|
||||||
|
then
|
||||||
|
ynh_secure_remove --file="$n_install_dir"
|
||||||
|
ynh_secure_remove --file="/usr/local/n"
|
||||||
|
sed --in-place "/N_PREFIX/d" /root/.bashrc
|
||||||
|
rm -f /etc/cron.daily/node_update
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Set a cron design to update your node versions
|
||||||
|
#
|
||||||
|
# [internal]
|
||||||
|
#
|
||||||
|
# This cron will check and update all minor node versions used by your apps.
|
||||||
|
#
|
||||||
|
# usage: ynh_cron_upgrade_node
|
||||||
|
#
|
||||||
|
# Requires YunoHost version 2.7.12 or higher.
|
||||||
|
ynh_cron_upgrade_node () {
|
||||||
|
# Build the update script
|
||||||
|
cat > "$n_install_dir/node_update.sh" << EOF
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
version_path="$node_version_path"
|
||||||
|
n_install_dir="$n_install_dir"
|
||||||
|
|
||||||
|
# Log the date
|
||||||
|
date
|
||||||
|
|
||||||
|
# List all real installed version of node
|
||||||
|
all_real_version="\$(find \$version_path/* -maxdepth 0 -type d | sed "s@\$version_path/@@g")"
|
||||||
|
|
||||||
|
# Keep only the major version number of each line
|
||||||
|
all_real_version=\$(echo "\$all_real_version" | sed 's/\..*\$//')
|
||||||
|
|
||||||
|
# Remove double entries
|
||||||
|
all_real_version=\$(echo "\$all_real_version" | sort --unique)
|
||||||
|
|
||||||
|
# Read each major version
|
||||||
|
while read version
|
||||||
|
do
|
||||||
|
echo "Update of the version \$version"
|
||||||
|
sudo \$n_install_dir/bin/n \$version
|
||||||
|
|
||||||
|
# Find the last "real" version for this major version of node.
|
||||||
|
real_nodejs_version=\$(find \$version_path/\$version* -maxdepth 0 | sort --version-sort | tail --lines=1)
|
||||||
|
real_nodejs_version=\$(basename \$real_nodejs_version)
|
||||||
|
|
||||||
|
# Update the symbolic link for this version
|
||||||
|
sudo ln --symbolic --force --no-target-directory \$version_path/\$real_nodejs_version \$version_path/\$version
|
||||||
|
done <<< "\$(echo "\$all_real_version")"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod +x "$n_install_dir/node_update.sh"
|
||||||
|
|
||||||
|
# Build the cronjob
|
||||||
|
cat > "/etc/cron.daily/node_update" << EOF
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
$n_install_dir/node_update.sh >> $n_install_dir/node_update.log
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod +x "/etc/cron.daily/node_update"
|
||||||
|
}
|
||||||
|
|
|
@ -112,8 +112,8 @@ ynh_script_progression --message="Installing dependencies..." --time --weight=1
|
||||||
|
|
||||||
ynh_install_app_dependencies $pkg_dependencies
|
ynh_install_app_dependencies $pkg_dependencies
|
||||||
|
|
||||||
ynh_install_nodejs --nodejs_version=$nodejs_version
|
EXPERIMENTAL_ynh_install_nodejs --nodejs_version=$nodejs_version
|
||||||
ynh_use_nodejs
|
EXPERIMENTAL_ynh_use_nodejs
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||||
|
@ -156,10 +156,10 @@ ynh_script_progression --message="Performing Node app installation..." --time --
|
||||||
chown -R $app: $final_path
|
chown -R $app: $final_path
|
||||||
|
|
||||||
pushd $final_path/src
|
pushd $final_path/src
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error install node-gyp
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error install node-gyp
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error install
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error install
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error install argon2-cli
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error install argon2-cli
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error audit fix
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error audit fix
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -211,13 +211,8 @@ ynh_script_progression --message="Configuring a systemd service..." --time --wei
|
||||||
### - As well as the section "RESTORE SYSTEMD" in the restore script
|
### - As well as the section "RESTORE SYSTEMD" in the restore script
|
||||||
### - And the section "SETUP SYSTEMD" in the upgrade script
|
### - And the section "SETUP SYSTEMD" in the upgrade script
|
||||||
|
|
||||||
# Set the systemd service settings
|
|
||||||
ynh_replace_string "__PATH__" "$PATH" "../conf/systemd.service"
|
|
||||||
ynh_replace_string "__NODEJS_PATH__" "$nodejs_path" "../conf/systemd.service"
|
|
||||||
ynh_replace_string "__FINAL_PATH__" "$final_path" "../conf/systemd.service"
|
|
||||||
|
|
||||||
# Create a dedicated systemd config
|
# Create a dedicated systemd config
|
||||||
ynh_add_systemd_config
|
ynh_add_systemd_config_vars --others_var="ynh_node_load_PATH ynh_npm"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# GENERIC FINALIZATION
|
# GENERIC FINALIZATION
|
||||||
|
|
|
@ -48,7 +48,7 @@ ynh_script_progression --message="Removing dependencies..." --time --weight=1
|
||||||
|
|
||||||
# Remove metapackage and its dependencies
|
# Remove metapackage and its dependencies
|
||||||
ynh_remove_app_dependencies
|
ynh_remove_app_dependencies
|
||||||
ynh_remove_nodejs
|
EXPERIMENTAL_ynh_remove_nodejs
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# REMOVE APP MAIN DIR
|
# REMOVE APP MAIN DIR
|
||||||
|
|
|
@ -80,7 +80,7 @@ chown -R $app: $final_path
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Reinstalling dependencies..." --time --weight=1
|
ynh_script_progression --message="Reinstalling dependencies..." --time --weight=1
|
||||||
|
|
||||||
ynh_install_nodejs --nodejs_version=$nodejs_version
|
EXPERIMENTAL_ynh_install_nodejs --nodejs_version=$nodejs_version
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# RESTORE SYSTEMD
|
# RESTORE SYSTEMD
|
||||||
|
|
|
@ -53,6 +53,17 @@ if [ -z "$final_path" ]; then
|
||||||
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# If admin or password do not exist, assign the standard ones and have them replaced upon first login
|
||||||
|
if [ -z "$admin" ] || [ -z "$hashedpassword" ]; then
|
||||||
|
admin="admin"
|
||||||
|
hashedpassword='$argon2i$v=19$m=4096,t=3,p=1$/VYxjWHBzbkuCEO6Hh0AUw$nJaTJtth57vCAyYvg+UbtnscilR0UcE02AfLOhERe3A'
|
||||||
|
pass_set="false"
|
||||||
|
ynh_app_setting_set --app=$app --key=admin --value=$admin
|
||||||
|
ynh_app_setting_set --app=$hashedpassword --key=hashedpassword --value=$hashedpassword
|
||||||
|
else
|
||||||
|
pass_set="true"
|
||||||
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -115,8 +126,8 @@ ynh_script_progression --message="Upgrading dependencies..." --time --weight=1
|
||||||
|
|
||||||
ynh_install_app_dependencies $pkg_dependencies
|
ynh_install_app_dependencies $pkg_dependencies
|
||||||
|
|
||||||
ynh_install_nodejs --nodejs_version=$nodejs_version
|
EXPERIMENTAL_ynh_install_nodejs --nodejs_version=$nodejs_version
|
||||||
ynh_use_nodejs
|
EXPERIMENTAL_ynh_use_nodejs
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# CREATE DEDICATED USER
|
# CREATE DEDICATED USER
|
||||||
|
@ -136,10 +147,10 @@ ynh_script_progression --message="Performing Node app installation..." --time --
|
||||||
chown -R $app: $final_path
|
chown -R $app: $final_path
|
||||||
|
|
||||||
pushd $final_path/src
|
pushd $final_path/src
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error install node-gyp
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error install node-gyp
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error install
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error install
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error install argon2-cli
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error install argon2-cli
|
||||||
exec_as $app $nodejs_path/npm --loglevel=error audit fix
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm --loglevel=error audit fix
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -157,7 +168,7 @@ echo "ZT_ADDR=localhost:$(</var/lib/zerotier-one/zerotier-one.port)" >> $env_fil
|
||||||
echo "HTTP_PORT=$port" >> $env_file
|
echo "HTTP_PORT=$port" >> $env_file
|
||||||
|
|
||||||
# Setup user credentials file
|
# Setup user credentials file
|
||||||
echo "{\"$admin\":{\"name\":\"$admin\",\"pass_set\":true,\"hash\":\"$hashedpassword\"}}" >> "$final_path/src/etc/passwd"
|
echo "{\"$admin\":{\"name\":\"$admin\",\"pass_set\":$pass_set,\"hash\":\"$hashedpassword\"}}" >> "$final_path/src/etc/passwd"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# LINK CERTIFICATES
|
# LINK CERTIFICATES
|
||||||
|
@ -166,8 +177,8 @@ echo "{\"$admin\":{\"name\":\"$admin\",\"pass_set\":true,\"hash\":\"$hashedpassw
|
||||||
# Even though one can stay in HTTP mode, the ztncui requires SSL certificates
|
# Even though one can stay in HTTP mode, the ztncui requires SSL certificates
|
||||||
# let's use the ones of the domain
|
# let's use the ones of the domain
|
||||||
pushd $final_path/src/etc/tls
|
pushd $final_path/src/etc/tls
|
||||||
cp /etc/yunohost/certs/$domain/key.pem privkey.pem
|
cp -f /etc/yunohost/certs/$domain/key.pem privkey.pem
|
||||||
cp /etc/yunohost/certs/$domain/crt.pem fullchain.pem
|
cp -f /etc/yunohost/certs/$domain/crt.pem fullchain.pem
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -183,13 +194,8 @@ ynh_use_logrotate --non-append
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Upgrading systemd configuration..." --time --weight=1
|
ynh_script_progression --message="Upgrading systemd configuration..." --time --weight=1
|
||||||
|
|
||||||
# Set the systemd service settings
|
|
||||||
ynh_replace_string "__PATH__" "$PATH" "../conf/systemd.service"
|
|
||||||
ynh_replace_string "__NODEJS_PATH__" "$nodejs_path" "../conf/systemd.service"
|
|
||||||
ynh_replace_string "__FINAL_PATH__" "$final_path" "../conf/systemd.service"
|
|
||||||
|
|
||||||
# Create a dedicated systemd config
|
# Create a dedicated systemd config
|
||||||
ynh_add_systemd_config
|
ynh_add_systemd_config_vars --others_var="ynh_node_load_PATH ynh_npm"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# GENERIC FINALIZATION
|
# GENERIC FINALIZATION
|
||||||
|
@ -231,3 +237,7 @@ ynh_systemd_action --service_name=nginx --action=reload
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
ynh_script_progression --message="Upgrade of $app completed" --time --last
|
ynh_script_progression --message="Upgrade of $app completed" --time --last
|
||||||
|
|
||||||
|
if [ $pass_set = "false" ]; then
|
||||||
|
ynh_print_warn --message="Default ztncui credentials were reset: admin/password"
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue