mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Changes include: * removing unused variables * replacing spaces with tabs where appropriate * more consistency with variable declarations Signed-off-by: Luka Perkov <luka@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38142 3c298f89-4303-0410-b956-a3cf2f4a3e73
37 lines
658 B
Bash
Executable File
37 lines
658 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2011 OpenWrt.org
|
|
|
|
START=98
|
|
|
|
USE_PROCD=1
|
|
PROG=/usr/sbin/ntpd
|
|
|
|
start_service() {
|
|
local peers
|
|
local args="-n"
|
|
local enable_server
|
|
|
|
config_load system
|
|
config_get peers ntp server
|
|
config_get_bool enable_server ntp enable_server 0
|
|
|
|
[ $enable_server -eq 0 -a -z "$peers" ] && return
|
|
|
|
procd_open_instance
|
|
procd_set_param command "$PROG" -n
|
|
[ $enable_server -ne 0 ] && procd_append_param command -l
|
|
[ -n "$peers" ] && {
|
|
local peer
|
|
for peer in $peers; do
|
|
procd_append_param command -p $peer
|
|
done
|
|
}
|
|
procd_set_param respawn
|
|
procd_close_instance
|
|
}
|
|
|
|
service_triggers()
|
|
{
|
|
procd_add_reload_trigger "system"
|
|
}
|