2018-09-25 19:03:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# manage script failure
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
# retrieve arguments
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2018-10-18 05:16:40 +02:00
|
|
|
|
2018-09-25 19:03:30 +02:00
|
|
|
# definie useful vars
|
2018-10-18 05:16:40 +02:00
|
|
|
final_path="/opt/yunohost/$app"
|
|
|
|
home_path="/home/$app"
|
2018-09-25 19:03:30 +02:00
|
|
|
data_path="/home/$app/.$app"
|
|
|
|
|
|
|
|
# check domain/path availability
|
|
|
|
path_url=$(ynh_normalize_url_path "/")
|
2018-10-18 05:16:40 +02:00
|
|
|
ynh_webpath_available "$domain" "$path_url" || ynh_die "$domain/$path_url is not available, please use an other domain."
|
|
|
|
ynh_webpath_register $app "$domain" "$path_url"
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# add required packages
|
|
|
|
ynh_install_app_dependencies "$PKG_DEPENDENCIES"
|
|
|
|
|
|
|
|
# save app settings
|
2018-10-18 05:16:40 +02:00
|
|
|
ynh_app_setting_set $app domain "$domain"
|
2018-09-25 19:03:30 +02:00
|
|
|
ynh_app_setting_set $app is_public $is_public
|
|
|
|
|
|
|
|
# find a free port & open it
|
|
|
|
port=$(ynh_find_port 8123)
|
|
|
|
ynh_app_setting_set $app port $port
|
2018-10-18 05:16:40 +02:00
|
|
|
ynh_exec_fully_quiet yunohost firewall allow TCP $port
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# create a dedicated system user
|
2018-10-18 05:16:40 +02:00
|
|
|
ynh_system_user_create $app
|
2018-09-25 19:03:30 +02:00
|
|
|
|
2018-12-18 07:30:30 +01:00
|
|
|
# grant sudo permissions to the user to manage his own systemd service
|
|
|
|
myynh_create_dir "/etc/sudoers.d"
|
2018-12-18 22:36:54 +01:00
|
|
|
cp "../conf/sudoers" "/etc/sudoers.d/$app"
|
2018-12-18 07:30:30 +01:00
|
|
|
|
2018-09-25 19:03:30 +02:00
|
|
|
# create a directory for the installation of Home Assistant
|
2018-10-18 05:16:40 +02:00
|
|
|
myynh_create_dir "$final_path"
|
|
|
|
chown $app: "$final_path"
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# create a directory for the datas of Home Assistant
|
2018-10-18 05:16:40 +02:00
|
|
|
myynh_create_dir "$data_path"
|
|
|
|
chown -R $app: "$home_path"
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# installation in a virtual environment
|
2018-10-18 05:16:40 +02:00
|
|
|
exec_as $app -H -s /bin/bash -c " \
|
2018-09-25 19:03:30 +02:00
|
|
|
echo 'create the virtual environment' \
|
2018-10-18 05:16:40 +02:00
|
|
|
&& python3 -m venv "$final_path" \
|
2018-09-25 19:03:30 +02:00
|
|
|
&& echo 'activate the virtual environment' \
|
2018-10-18 05:16:40 +02:00
|
|
|
&& source "$final_path/bin/activate" \
|
2018-09-25 19:03:30 +02:00
|
|
|
&& echo 'install a required python package' \
|
2018-10-18 05:16:40 +02:00
|
|
|
&& pip install --upgrade wheel \
|
2018-09-25 19:03:30 +02:00
|
|
|
&& echo 'install Home Assistant' \
|
2018-10-18 05:16:40 +02:00
|
|
|
&& pip install --upgrade $app \
|
2018-09-25 19:03:30 +02:00
|
|
|
"
|
|
|
|
|
|
|
|
# set default configuration files
|
|
|
|
ynh_replace_string "__PORT__" "$port" "../conf/homeassistant_conf_files/configuration.yaml"
|
|
|
|
ynh_replace_string "__DOMAIN__" "$domain" "../conf/homeassistant_conf_files/configuration.yaml"
|
2019-06-09 18:30:25 +02:00
|
|
|
chmod -R +x "../conf/homeassistant_conf_files/bin/"
|
2018-09-25 19:03:30 +02:00
|
|
|
|
2019-06-09 18:30:25 +02:00
|
|
|
# move all homeassistant_conf_files
|
2018-09-25 19:03:30 +02:00
|
|
|
cp -r "../conf/homeassistant_conf_files/." "$data_path/"
|
|
|
|
chown -R $app: "$data_path"
|
|
|
|
|
|
|
|
# setup up autostart using systemd
|
2018-10-18 05:16:40 +02:00
|
|
|
ynh_add_systemd_config "$app@$app"
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# add service in admin panel
|
|
|
|
yunohost service add "$app@$app" --log "$data_path/home-assistant.log"
|
|
|
|
|
|
|
|
# enable & restart systemd service
|
2018-10-18 05:16:40 +02:00
|
|
|
ynh_system_reload --service_name="$app@$app" --action=enable
|
2018-11-30 05:55:42 +01:00
|
|
|
ynh_check_starting --line_to_match="Home Assistant initialized" --app_log="systemd" --timeout=1000 --service_name="$app@$app"
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
# reload nginx
|
2018-10-18 05:16:40 +02:00
|
|
|
ynh_system_reload --service_name=nginx
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# unprotect app access if public (needed for Android app to work)
|
2018-10-18 05:16:40 +02:00
|
|
|
[ $is_public -eq 1 ] && ynh_app_setting_set $app unprotected_uris "/"
|
2018-09-25 19:03:30 +02:00
|
|
|
|
|
|
|
# alert about administrator creator
|
2018-10-18 05:16:40 +02:00
|
|
|
message="Your installation is not yet secure : please, IMMEDIATELY go to $domain in order to create the admin user of Home Assistant."
|
|
|
|
ynh_send_readme_to_admin --app_message="$message" --recipients="root"
|