1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/homeassistant_ynh.git synced 2024-09-03 19:26:16 +02:00

Merge pull request #5 from ewilly/master

update
This commit is contained in:
ewilly 2019-06-10 12:09:11 +02:00 committed by GitHub
commit d0754c199e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 27 additions and 14 deletions

View file

@ -38,6 +38,10 @@
"en": "Should this application be public ? (if not, Smartphone app will not work)", "en": "Should this application be public ? (if not, Smartphone app will not work)",
"fr": "Est-ce que cette application doit être visible publiquement ? (dans le cas contraire, l'application sur Smartphone ne fonctionnera pas)" "fr": "Est-ce que cette application doit être visible publiquement ? (dans le cas contraire, l'application sur Smartphone ne fonctionnera pas)"
}, },
"help": {
"en": "If not public, Smartphone app will not work",
"fr": "Dans le cas contraire, l'application sur Smartphone ne fonctionnera pas"
},
"default": true "default": true
} }
] ]

View file

@ -17,38 +17,41 @@ home_path="/home/$app"
data_path="/home/$app/.$app" data_path="/home/$app/.$app"
# check domain/path availability # check domain/path availability
ynh_script_progression --message="Validating installation parameters..."
path_url=$(ynh_normalize_url_path "/") path_url=$(ynh_normalize_url_path "/")
ynh_webpath_available "$domain" "$path_url" || ynh_die "$domain/$path_url is not available, please use an other domain." 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" ynh_webpath_register $app "$domain" "$path_url"
# add required packages # add required packages
ynh_script_progression --message="Installing dependencies..."
ynh_install_app_dependencies "$PKG_DEPENDENCIES" ynh_install_app_dependencies "$PKG_DEPENDENCIES"
# save app settings # save app settings
ynh_script_progression --message="Storing installation settings..."
ynh_app_setting_set $app domain "$domain" ynh_app_setting_set $app domain "$domain"
ynh_app_setting_set $app is_public $is_public ynh_app_setting_set $app is_public $is_public
# find a free port & open it # find a free port & open it
ynh_script_progression --message="Looking for a free port and opening it..."
port=$(ynh_find_port 8123) port=$(ynh_find_port 8123)
ynh_app_setting_set $app port $port ynh_app_setting_set $app port $port
ynh_exec_fully_quiet yunohost firewall allow TCP $port ynh_exec_fully_quiet yunohost firewall allow TCP $port
# create a dedicated system user # create a dedicated system user
ynh_script_progression --message="Creating dedicated user, rights and folders..."
ynh_system_user_create $app ynh_system_user_create $app
## grant sudo permissions to the user to manage his own systemd service
# grant sudo permissions to the user to manage his own systemd service
myynh_create_dir "/etc/sudoers.d" myynh_create_dir "/etc/sudoers.d"
cp "../conf/sudoers" "/etc/sudoers.d/$app" cp "../conf/sudoers" "/etc/sudoers.d/$app"
## create a directory for the installation of Home Assistant
# create a directory for the installation of Home Assistant
myynh_create_dir "$final_path" myynh_create_dir "$final_path"
chown $app: "$final_path" chown $app: "$final_path"
## create a directory for the datas of Home Assistant
# create a directory for the datas of Home Assistant
myynh_create_dir "$data_path" myynh_create_dir "$data_path"
chown -R $app: "$home_path" chown -R $app: "$home_path"
# installation in a virtual environment # installation in a virtual environment
ynh_script_progression --message="Installing Home Assistant in a virtual environment..."
exec_as $app -H -s /bin/bash -c " \ exec_as $app -H -s /bin/bash -c " \
echo 'create the virtual environment' \ echo 'create the virtual environment' \
&& python3 -m venv "$final_path" \ && python3 -m venv "$final_path" \
@ -61,33 +64,38 @@ exec_as $app -H -s /bin/bash -c " \
" "
# set default configuration files # set default configuration files
ynh_script_progression --message="Configuring the installation..."
ynh_replace_string "__PORT__" "$port" "../conf/homeassistant_conf_files/configuration.yaml" ynh_replace_string "__PORT__" "$port" "../conf/homeassistant_conf_files/configuration.yaml"
ynh_replace_string "__DOMAIN__" "$domain" "../conf/homeassistant_conf_files/configuration.yaml" ynh_replace_string "__DOMAIN__" "$domain" "../conf/homeassistant_conf_files/configuration.yaml"
chmod -R +x "../conf/homeassistant_conf_files/bin/" chmod -R +x "../conf/homeassistant_conf_files/bin/"
## move all homeassistant_conf_files
# move all homeassistant_conf_files
cp -r "../conf/homeassistant_conf_files/." "$data_path/" cp -r "../conf/homeassistant_conf_files/." "$data_path/"
chown -R $app: "$data_path" chown -R $app: "$data_path"
# setup up autostart using systemd # setup up autostart using systemd
ynh_script_progression --message="Adding the dedicated service..."
ynh_add_systemd_config "$app@$app" ynh_add_systemd_config "$app@$app"
## add service in admin panel
# add service in admin panel yunohost service add "$app@$app" --log "$data_path/home-assistant.log" --description "Home Assistant server"
yunohost service add "$app@$app" --log "$data_path/home-assistant.log"
# enable & restart systemd service # enable & restart systemd service
ynh_script_progression --message="Starting the Home Assistant server..."
ynh_system_reload --service_name="$app@$app" --action=enable ynh_system_reload --service_name="$app@$app" --action=enable
ynh_check_starting --line_to_match="Home Assistant initialized" --app_log="systemd" --timeout=1000 --service_name="$app@$app" ynh_check_starting --line_to_match="Home Assistant initialized" --app_log="systemd" --timeout=1000 --service_name="$app@$app"
# create a dedicated nginx config # create a dedicated nginx config
ynh_script_progression --message="Configuring nginx web server..."
ynh_add_nginx_config ynh_add_nginx_config
## reload nginx
# reload nginx
ynh_system_reload --service_name=nginx ynh_system_reload --service_name=nginx
# unprotect app access if public (needed for Android app to work) # unprotect app access if public (needed for Android app to work)
ynh_script_progression --message="Configuring SSOwat..."
[ $is_public -eq 1 ] && ynh_app_setting_set $app unprotected_uris "/" [ $is_public -eq 1 ] && ynh_app_setting_set $app unprotected_uris "/"
# alert about administrator creator # alert about administrator creator
message="Your installation is not yet secure : please, IMMEDIATELY go to $domain in order to create the admin user of Home Assistant." message="Your installation is not yet secure : please, IMMEDIATELY go to $domain in order to create the admin user of Home Assistant."
ynh_script_progression --message="$message"
ynh_send_readme_to_admin --app_message="$message" --recipients="root" ynh_send_readme_to_admin --app_message="$message" --recipients="root"
ynh_script_progression --message="Installation of $app completed" --last

View file

@ -47,6 +47,7 @@ fi
if [ ! -d "$home_path" ]; then if [ ! -d "$home_path" ]; then
ynh_restore_file "$home_path" ynh_restore_file "$home_path"
chown -R $app: "$home_path" chown -R $app: "$home_path"
chmod -R +x "$home_path/.homeassistant/bin"
else else
ynh_die "$home_path already exists and will not be overwritten" ynh_die "$home_path already exists and will not be overwritten"
fi fi
@ -56,7 +57,7 @@ fi
ynh_exec_fully_quiet yunohost firewall allow TCP $port ynh_exec_fully_quiet yunohost firewall allow TCP $port
# add service in admin panel # add service in admin panel
yunohost service add "$app@$app" --log "$data_path/home-assistant.log" yunohost service add "$app@$app" --log "$data_path/home-assistant.log" --description "Home Assistant server"
# enable & restart systemd service # enable & restart systemd service
ynh_system_reload --service_name="$app@$app" --action=enable ynh_system_reload --service_name="$app@$app" --action=enable