]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - lighttpd.conf
fix include_shell non-zero exit status causing startup failure
[packages/lighttpd.git] / lighttpd.conf
index 75079f7cfccae3a9b3f03e8e00fe4fd6fdf71155..04973ff445b31f3a191048935b579288fc80d85e 100644 (file)
@@ -1,6 +1,7 @@
 # lighttpd configuration file.
 
 # lighttpd configuration file.
 
-include_shell "for f in conf.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done"
+# modules config
+include_shell "for f in conf.d/*.conf; do [ -f \"$f\" ] && echo \"include \\"$f\\"\"; done; exit 0"
 
 ## a static document-root, for virtual-hosting take look at the
 ## server.virtual-* options
 
 ## a static document-root, for virtual-hosting take look at the
 ## server.virtual-* options
@@ -180,8 +181,10 @@ server.groupname = "lighttpd"
 ##
 #connection.kbytes-per-second = 32
 
 ##
 #connection.kbytes-per-second = 32
 
-# webapps configs
-include_shell "for f in webapps.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done"
+# webapps config
+include_shell "for f in webapps.d/*.conf; do [ -f \"$f\" ] && echo \"include \\"$f\\"\"; done; exit 0"
 
 # vhosts config
 
 # vhosts config
-include_shell "for f in vhosts.d/*.conf ; do [ -f \"$f\" ] && echo \"include \\"$f\\"\" ; done"
+include_shell "for f in vhosts.d/*.conf; do [ -f \"$f\" ] && echo \"include \\"$f\\"\"; done; exit 0"
+
+## EOF
This page took 0.024388 seconds and 4 git commands to generate.