mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-29 01:41:51 +08:00
11 lines
159 B
Bash
Executable File
11 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$(uci get nvr.config.enabled)" -eq 1 ];then
|
|
/etc/init.d/nvr enable 2>&1 &
|
|
/etc/init.d/nvr start 2>&1 &
|
|
else
|
|
/usr/nvr/nvrrecord 2>&1 &
|
|
fi
|
|
|
|
|