mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 19:14:30 +04:00
recent changes in trunk allow us to specify the userid inside the openwrt makefile. the info is stored int he meta data of the IPK contorl file and users are generated by the new generic postinst trigger. Signed-off-by: John Crispin <blogic@openwrt.org>
19 lines
374 B
Bash
19 lines
374 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
|
|
START=65
|
|
STOP=65
|
|
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
# ln -sf /dev/ttyS0 /dev/gps0
|
|
# /usr/sbin/setgarmin -d /dev/gps -c /etc/setgarmin.conf
|
|
mkdir -p /var/lib/ntp
|
|
chown -R ntp:ntp /var/lib/ntp
|
|
|
|
procd_open_instance
|
|
procd_set_param command /sbin/ntpd -g -u ntp:ntp -p /var/run/ntpd.pid -n
|
|
procd_close_instance
|
|
}
|