mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 22:29:12 +08:00
13 lines
172 B
Bash
13 lines
172 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
|
|
|
START=85
|
|
|
|
start() {
|
|
service_start /usr/sbin/fakeidentd -r
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/sbin/fakeidentd
|
|
}
|