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

« back to all changes in this revision

Viewing changes to debian/ntp-simple.config

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2004-10-11 16:10:27 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041011161027-icyjbji8ujym633o
Tags: 1:4.2.0a-10ubuntu2
Use ntp.ubuntulinux.org instead of pool.ntp.org

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
 
db_input high shared/ntp/update-conf || true
16
 
db_go
17
 
 
18
 
exit 0