From 08485fd7d3348256a11b39371217cca24cee6323 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Wed, 27 Mar 2019 21:20:14 +0100 Subject: [PATCH] Fix armored key --- scripts/install | 10 +++++++--- scripts/remove | 3 +-- scripts/ynh_add_secure_repos__2 | 9 ++++++++- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/scripts/install b/scripts/install index 4b197d2..e68ac0a 100644 --- a/scripts/install +++ b/scripts/install @@ -15,6 +15,11 @@ source ynh_add_secure_repos__2 # MANAGE SCRIPT FAILURE #================================================= +ynh_clean_setup () { + ### Remove this function if there's nothing to clean before calling the remove script. + read -p "Press any key..." + true +} # Exit if an error occurs during the execution of the script ynh_abort_if_errors @@ -89,10 +94,9 @@ fi # Install extra_repo debian package backports & yarn if [ "$(lsb_release --codename --short)" == "jessie" ]; then - ynh_install_extra_repo --repo="deb http://httpredir.debian.org/debian jessie-backports main" + ynh_install_extra_repo --repo="deb http://httpredir.debian.org/debian jessie-backports main" --append fi -ynh_install_extra_repo --repo="deb https://dl.yarnpkg.com/debian/ stable main" --key=https://dl.yarnpkg.com/debian/pubkey.gpg -ynh_package_update +ynh_install_extra_repo --repo="deb https://dl.yarnpkg.com/debian/ stable main" --key="https://dl.yarnpkg.com/debian/pubkey.gpg" --append # install nodejs ynh_install_nodejs 8 diff --git a/scripts/remove b/scripts/remove index 3436bce..1690fdb 100644 --- a/scripts/remove +++ b/scripts/remove @@ -78,8 +78,7 @@ ynh_remove_ruby ynh_remove_app_dependencies ynh_remove_nodejs -ynh_remove_extra_repo jessie-backports -ynh_remove_extra_repo yarn +ynh_remove_extra_repo #================================================= # REMOVE APP MAIN DIR diff --git a/scripts/ynh_add_secure_repos__2 b/scripts/ynh_add_secure_repos__2 index 51a9f1b..39bc21b 100644 --- a/scripts/ynh_add_secure_repos__2 +++ b/scripts/ynh_add_secure_repos__2 @@ -137,7 +137,13 @@ ynh_install_extra_repo () { if [ -n "$key" ] then mkdir -p "/etc/apt/trusted.gpg.d" - wget -q "$key" -O - | $wget_append /etc/apt/trusted.gpg.d/$name.gpg + if [[ "$(basename "$key")" =~ ".asc" ]] + then + local key_ext=asc + else + local key_ext=gpg + fi + wget -q "$key" -O - | gpg --dearmor | $wget_append /etc/apt/trusted.gpg.d/$name.$key_ext fi # Update the list of package with the new repo @@ -160,6 +166,7 @@ ynh_remove_extra_repo () { ynh_secure_remove "/etc/apt/sources.list.d/$name.list" ynh_secure_remove "/etc/apt/preferences.d/$name" ynh_secure_remove "/etc/apt/trusted.gpg.d/$name.gpg" + ynh_secure_remove "/etc/apt/trusted.gpg.d/$name.asc" # Update the list of package to exclude the old repo ynh_package_update