diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2021-07-06 12:04:18 +0200 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2021-07-06 12:04:18 +0200 |
commit | 5b4bf5ffc8a02cc1cb9e063a79fd93fb500da2cf (patch) | |
tree | e4d41b9595e505939223b599eba02be0ac1e8c34 | |
parent | 142d1c8a095c1b45f556850c21214ac6e4bb7971 (diff) |
#1048: Fix boot issues in ogLive with Kernel 5.11
-rwxr-xr-x | admin/Interface/CambiarAcceso | 4 | ||||
-rw-r--r-- | client/shared/lib/httpd/lighttpd.conf | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/admin/Interface/CambiarAcceso b/admin/Interface/CambiarAcceso index b57cfcd2..f698d19d 100755 --- a/admin/Interface/CambiarAcceso +++ b/admin/Interface/CambiarAcceso @@ -33,8 +33,8 @@ case "$PROTO" in exit $? ;; esac case "$1" in - admin) MODE="rw,nolock" ;; - user) MODE="ro,nolock" ;; + admin) MODE="rw" ;; + user) MODE="ro" ;; *) ogRaiseError $OG_ERR_FORMAT "modo desconocido $1" exit $? ;; esac diff --git a/client/shared/lib/httpd/lighttpd.conf b/client/shared/lib/httpd/lighttpd.conf index 7a11040b..ce1efa52 100644 --- a/client/shared/lib/httpd/lighttpd.conf +++ b/client/shared/lib/httpd/lighttpd.conf @@ -145,11 +145,11 @@ compress.filetype = ("text/plain", "text/html", "application/x-javascr #### external configuration files ## mimetype mapping -include_shell "/usr/share/lighttpd/create-mime.assign.pl" +include_shell "/usr/share/lighttpd/create-mime.conf.pl" ## load enabled configuration files, ## read /etc/lighttpd/conf-available/README first -include_shell "/usr/share/lighttpd/include-conf-enabled.pl" +include "/etc/lighttpd/conf-enabled/*.conf" #### handle Debian Policy Manual, Section 11.5. urls ## by default allow them only from localhost |