~ubuntu-branches/debian/squeeze/ntp/squeeze-201010051545

« back to all changes in this revision

Viewing changes to debian/ntpdate.config

  • Committer: Bazaar Package Importer
  • Author(s): Bdale Garbee
  • Date: 2002-03-23 00:22:31 UTC
  • Revision ID: james.westby@ubuntu.com-20020323002231-exmq9hd6ivvu1b6x
Tags: 1:4.1.0-8
move to US main!  Yippee!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
NS="/etc/default/ntp-servers"
 
4
 
 
5
. /usr/share/debconf/confmodule
 
6
 
 
7
if [ -f "$NS" ]; then
 
8
        . "$NS"
 
9
        db_set shared/ntp/servers "$NTPSERVERS"
 
10
fi
 
11
 
 
12
db_input high shared/ntp/servers || true
 
13
db_go
 
14
 
 
15
exit 0