Remove the superfluous parts of the uci-defaults file.
Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
PKG_NAME:=ariang
PKG_VERSION:=1.1.4
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE_URL:=https://codeload.github.com/mayswind/AriaNg-DailyBuild/tar.gz/$(PKG_VERSION)?
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
#!/bin/sh
-
-if [ -f "/etc/nginx/nginx.conf" ] && [ -f "/etc/nginx/conf.d/ariang.locations" ];
-then
- if [ "$( grep 'server_name localhost;' < /etc/nginx/nginx.conf)" ] &&
- [ ! "$( grep 'include conf.d/ariang.locations;' < /etc/nginx/nginx.conf)" ]; then
- sed -i '/server_name localhost;/\
- a\\tinclude conf.d/ariang.locations;' /etc/nginx/nginx.conf
- if [ -f /var/run/nginx.pid ]; then
- /etc/init.d/nginx restart
- fi
- fi
-fi
+[ -x /etc/init.d/nginx ] && /etc/init.d/nginx running && /etc/init.d/nginx reload
exit 0
-