acme: Fix whitespace and long lines, bump package rev
authorToke Høiland-Jørgensen <toke@toke.dk>
Wed, 19 Sep 2018 14:29:55 +0000 (16:29 +0200)
committerToke Høiland-Jørgensen <toke@toke.dk>
Wed, 19 Sep 2018 14:29:55 +0000 (16:29 +0200)
Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
net/acme/Makefile
net/acme/files/acme-cbi.lua
net/acme/files/run.sh

index 42d1026da6ec9cb657d598cf4058ef45df7c720a..5f0dc0f8496d25eafecc617e0da27cc1ff903abd 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=acme
 PKG_VERSION:=2.7.9
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 PKG_LICENSE:=GPLv3
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
@@ -75,7 +75,7 @@ define Package/luci-app-acme
   SECTION:=luci
   CATEGORY:=LuCI
   TITLE:=ACME package - LuCI interface
-  DEPENDS:= lua luci-base +acme 
+  DEPENDS:= lua luci-base +acme
   SUBMENU:=3. Applications
 endef
 
index 5c483491e43badadab0895a5cf9f25208a48f970..2b97272172591f33848ec723dc22e1cdea600d16 100644 (file)
@@ -61,7 +61,7 @@ kl.datatype = "and(uinteger,min(2048))"
 if uhttpd_presence then
 u = cs:option(Flag, "update_uhttpd", translate("Use for uhttpd"),
               translate("Update the uhttpd config with this certificate once issued " ..
-                        "(only select this for one certificate)." .. 
+                        "(only select this for one certificate)." ..
                         "Is also available luci-app-uhttpd to configure uhttpd form the LuCI interface."))
 u.rmempty = false
 end
@@ -69,8 +69,9 @@ end
 if nginx_presence then
 u = cs:option(Flag, "update_nginx", translate("Use for nginx"),
               translate("Update the nginx config with this certificate once issued " ..
-                        "(only select this for one certificate)." .. 
-                        "Nginx must support ssl, if not it won't start as it needs to be compiled with ssl support to use cert options"))
+                        "(only select this for one certificate)." ..
+                        "Nginx must support ssl, if not it won't start as it needs to be " ..
+                        "compiled with ssl support to use cert options"))
 u.rmempty = false
 end
 
index 506c19a63259b9546466ae603f99d220bd425c12..a0a9a784c4283ed78674125fc858ef13e05749f3 100644 (file)
@@ -67,19 +67,19 @@ pre_checks()
     for listener in $(get_listeners); do
         pid="${listener%/*}"
         cmd="${listener#*/}"
-        
+
         case "$cmd" in
             uhttpd)
                 debug "Found uhttpd listening on port 80; trying to disable."
-    
+
                 UHTTPD_LISTEN_HTTP=$(uci get uhttpd.main.listen_http)
-    
+
                 if [ -z "$UHTTPD_LISTEN_HTTP" ]; then
                     err "$main_domain: Unable to find uhttpd listen config."
                     err "Manually disable uhttpd or set webroot to continue."
                     return 1
                 fi
-    
+
                 uci set uhttpd.main.listen_http=''
                 uci commit uhttpd || return 1
                 if ! /etc/init.d/uhttpd reload ; then
@@ -189,7 +189,7 @@ issue_cert()
     config_get keylength "$section" keylength
     config_get webroot "$section" webroot
     config_get dns "$section" dns
-    
+
     UPDATE_NGINX=$update_nginx
     UPDATE_UHTTPD=$update_uhttpd