aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2023-07-06 15:45:16 -0400
committerTheodore Ts'o <tytso@mit.edu>2023-07-06 15:45:16 -0400
commit9c41c531404e286b6356ebdd627c76dcf3274a23 (patch)
tree5c3842519003f487648de6339317dd496495ff54
parentbe1d435ec210ce35f90f60801d53de4f98783e60 (diff)
downloadxfstests-bld-9c41c531404e286b6356ebdd627c76dcf3274a23.tar.gz
test-applaince: update lighttpd.conf fragment for compatibility with Bookworm
The default bookworm lighttpd scripts set index-file.names, so we need to use the := operator to override the default. Without this, lighttpd will fail to start when the test appliance is built with Debian Bookworm. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--test-appliance/files/etc/lighttpd/ltm.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-appliance/files/etc/lighttpd/ltm.conf b/test-appliance/files/etc/lighttpd/ltm.conf
index 88fe1682..29c321b4 100644
--- a/test-appliance/files/etc/lighttpd/ltm.conf
+++ b/test-appliance/files/etc/lighttpd/ltm.conf
@@ -1,7 +1,7 @@
# LTM additions to lighttpd.conf
#
server.document-root = "/var/www"
-index-file.names = ( "index.shtml", "index.html" )
+index-file.names := ( "index.shtml", "index.html" )
mimetype.assign = (
".htm" => "text/html",
".html" => "text/html",