mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-29 18:01:55 +08:00
13 lines
173 B
Bash
13 lines
173 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@cupsd[-1]
|
|
add ucitrack cupsd
|
|
set ucitrack.@cupsd[-1].init=cupsd
|
|
commit ucitrack
|
|
EOF
|
|
|
|
|
|
rm -f /tmp/luci*
|
|
exit 0
|