Make the daemon reload after the tls certificate is updated
Signed-off-by: Anya Lin <hukk1996@gmail.com>
PKG_NAME:=librespeed-go
PKG_VERSION:=1.1.5
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/librespeed/speedtest-go/tar.gz/v$(PKG_VERSION)?
local cfg="$1"
local isdir="${2:-0}"
local rw="${3:-0}"
+ local reload="${4:-0}"
local value
config_get value "config" "$cfg"
else
procd_add_jail_mount "$value"
fi
+
+ [ "$reload" = "0" ] || procd_append_param file "$value"
}
start_service() {
mount_jail_file "assets_path" "1"
mount_jail_file "database_file" "0" "1"
- mount_jail_file "tls_cert_file"
- mount_jail_file "tls_key_file"
+ mount_jail_file "tls_cert_file" "0" "0" "1"
+ mount_jail_file "tls_key_file" "0" "0" "1"
procd_close_instance
}