summaryrefslogtreecommitdiff
path: root/utils/lib.sh
diff options
context:
space:
mode:
authorBnyro <bnyro@tutanota.com>2024-10-09 11:59:31 +0200
committerBnyro <bnyro@tutanota.com>2024-11-24 12:41:57 +0100
commitf31a3a2053b07b834c5143bd6be4eaf05c1a014d (patch)
tree9f74011af2301a313b6780e711324efd88435b70 /utils/lib.sh
parent0253c10b522fe2e8206db78e37066771ce90cf92 (diff)
downloadsearxng-f31a3a2053b07b834c5143bd6be4eaf05c1a014d.tar.gz
searxng-f31a3a2053b07b834c5143bd6be4eaf05c1a014d.zip
[chore] *: fix typos detected by typos-cli
Diffstat (limited to 'utils/lib.sh')
-rwxr-xr-xutils/lib.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/lib.sh b/utils/lib.sh
index 7e80b12f1..ead4b0c61 100755
--- a/utils/lib.sh
+++ b/utils/lib.sh
@@ -772,7 +772,7 @@ docs.clean() {
docs.prebuild() {
# Dummy function to run some actions before sphinx-doc build gets started.
- # This finction needs to be overwritten by the application script.
+ # This function needs to be overwritten by the application script.
true
dump_return $?
}
@@ -1065,7 +1065,7 @@ nginx_remove_app() {
# usage: nginx_remove_app <myapp.conf>
info_msg "remove nginx app: $1"
- nginx_dissable_app "$1"
+ nginx_disable_app "$1"
rm -f "${NGINX_APPS_AVAILABLE}/$1"
}
@@ -1082,7 +1082,7 @@ nginx_enable_app() {
nginx_reload
}
-nginx_dissable_app() {
+nginx_disable_app() {
# usage: nginx_disable_app <myapp.conf>
@@ -1192,7 +1192,7 @@ apache_remove_site() {
# usage: apache_remove_site <mysite.conf>
info_msg "remove apache site: $1"
- apache_dissable_site "$1"
+ apache_disable_site "$1"
rm -f "${APACHE_SITES_AVAILABLE}/$1"
}
@@ -1222,7 +1222,7 @@ apache_enable_site() {
apache_reload
}
-apache_dissable_site() {
+apache_disable_site() {
# usage: apache_disable_site <mysite.conf>