mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-13 11:54:29 +08:00
17 lines
547 B
Bash
17 lines
547 B
Bash
#!/bin/sh
|
|
|
|
# unpack
|
|
tar -C /www/tinyfilemanager -xzf /www/tinyfilemanager/index.tgz
|
|
rm -f /www/tinyfilemanager/index.tgz
|
|
|
|
# uhttpd
|
|
uci -q get uhttpd.main.index_page|grep -i 'index.php' >/dev/null || uci add_list uhttpd.main.index_page='index.php'
|
|
uci -q get uhttpd.main.interpreter|grep -i '.php=/usr/bin/php-cgi' >/dev/null || uci add_list uhttpd.main.interpreter='.php=/usr/bin/php-cgi'
|
|
uci changes uhttpd|grep . >/dev/null && uci commit uhttpd
|
|
/etc/init.d/uhttpd reload
|
|
|
|
# nginx
|
|
[ -n "$(command -v nginx)" ] && /etc/init.d/nginx reload
|
|
|
|
exit 0
|