From 071e8ddf8cc07c5c05e7e478c6dfa9ff80b5c4e0 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 17 Nov 2021 15:09:40 +0100 Subject: [PATCH] Fix linter warnings --- manifest.json | 6 ++---- scripts/_common.sh | 24 ------------------------ scripts/restore | 2 -- 3 files changed, 2 insertions(+), 30 deletions(-) diff --git a/manifest.json b/manifest.json index ad18fdb..51bcd94 100644 --- a/manifest.json +++ b/manifest.json @@ -29,8 +29,7 @@ "install" : [ { "name": "domain", - "type": "domain", - "example": "domain.org" + "type": "domain" }, { "name": "path", @@ -40,8 +39,7 @@ }, { "name": "admin", - "type": "user", - "example": "john" + "type": "user" }, { "name": "infcloud", diff --git a/scripts/_common.sh b/scripts/_common.sh index 09ff99e..0b9a9c9 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -184,30 +184,6 @@ __PRE_TAG1__$(yunohost tools diagnosis | grep -B 100 "services:" | sed '/service #================================================= -ynh_debian_release () { - lsb_release --codename --short -} - -is_stretch () { - if [ "$(ynh_debian_release)" == "stretch" ] - then - return 0 - else - return 1 - fi -} - -is_jessie () { - if [ "$(ynh_debian_release)" == "jessie" ] - then - return 0 - else - return 1 - fi -} - -#================================================= - ynh_maintenance_mode_ON () { # Load value of $path_url and $domain from the config if their not set if [ -z $path_url ]; then diff --git a/scripts/restore b/scripts/restore index f5f9092..6d981e5 100644 --- a/scripts/restore +++ b/scripts/restore @@ -34,8 +34,6 @@ phpversion=$(ynh_app_setting_get --app=$app --key=phpversion) # CHECK IF THE APP CAN BE RESTORED #================================================= -ynh_webpath_available $domain $path_url \ - || ynh_die "Path not available: ${domain}${path_url}" test ! -d $final_path \ || ynh_die "There is already a directory: $final_path " test ! -d "/opt/yunohost/$app" \