summaryrefslogtreecommitdiff
blob: 302f5561ae5dfd50defa40aa3bd1397eb7d817ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/adjtime/files/adjtime.init,v 1.1 2006/01/21 23:21:16 nerdboy Exp $

depend() {
	need net
	before ntpd
}

start() {
	echo 'Adjusting clock tick...'
	/sbin/adjtime.pl -v -s $NTP_HOST -i 60
	eend $?
}