From ef3531aae5360e68eecf04c81ba4a3e14910998c Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 5 Sep 2020 19:29:58 +0200 Subject: [PATCH] Fix caps --- actions.toml | 10 +++++----- scripts/actions/add_remove_abiword | 2 +- scripts/actions/add_remove_libreoffice | 4 ++-- scripts/actions/public_private | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/actions.toml b/actions.toml index 9f32bf8..0273bb8 100644 --- a/actions.toml +++ b/actions.toml @@ -1,20 +1,20 @@ [add_remove_abiword] -name = "Install/remove abiword" +name = "Install/remove AbiWord" command = "/bin/bash scripts/actions/add_remove_abiword" # user = "root" # optional # cwd = "/" # optional # accepted_return_codes = [0, 1, 2, 3] # optional accepted_return_codes = [0] -description = "Install or remove abiword" +description = "Install or remove AbiWord" [add_remove_libreoffice] -name = "Install/remove libreoffice" +name = "Install/remove LibreOffice" command = "/bin/bash scripts/actions/add_remove_libreoffice" # user = "root" # optional # cwd = "/" # optional # accepted_return_codes = [0, 1, 2, 3] # optional accepted_return_codes = [0] -description = "Install or remove libreoffice" +description = "Install or remove LibreOffice" [list_all_pads] name = "List all existing pads" @@ -46,5 +46,5 @@ description = "Change the public access of the app." [public_private.arguments] [public_private.arguments.is_public] type = "boolean" - ask = "Is it a public app ?" + ask = "Is it a public app?" default = true diff --git a/scripts/actions/add_remove_abiword b/scripts/actions/add_remove_abiword index 52d8325..891ab94 100755 --- a/scripts/actions/add_remove_abiword +++ b/scripts/actions/add_remove_abiword @@ -65,7 +65,7 @@ fi # INSTALL OR REMOVE ABIWORD #================================================= -ynh_script_progression --message="$action2 Abiword..." --weight=3 +ynh_script_progression --message="$action2 AbiWord..." --weight=3 # Load common variables, and especially abiword dependencies. source scripts/_variables diff --git a/scripts/actions/add_remove_libreoffice b/scripts/actions/add_remove_libreoffice index 55e158d..106ecbd 100755 --- a/scripts/actions/add_remove_libreoffice +++ b/scripts/actions/add_remove_libreoffice @@ -46,7 +46,7 @@ else action2=Installing fi -ynh_print_info --message="Libreoffice will be $action1." +ynh_print_info --message="LibreOffice will be $action1." if apt-cache depends ${app//_/-}-ynh-deps | grep --quiet abiword then @@ -65,7 +65,7 @@ fi # INSTALL OR REMOVE LIBREOFFICE #================================================= -ynh_script_progression --message="$action2 Libreoffice..." --weight=3 +ynh_script_progression --message="$action2 LibreOffice..." --weight=3 # Load common variables, and especially libreoffice dependencies. source scripts/_variables diff --git a/scripts/actions/public_private b/scripts/actions/public_private index 2c33aed..39d6d3b 100755 --- a/scripts/actions/public_private +++ b/scripts/actions/public_private @@ -69,7 +69,7 @@ ynh_app_setting_set --app=$app --key=is_public --value=$is_public #================================================= # RELOAD NGINX #================================================= -ynh_script_progression --message="Reloading nginx web server..." +ynh_script_progression --message="Reloading NGINX web server..." ynh_systemd_action --service_name=nginx --action=reload