diff options
author | John Southworth <john.southworth@vyatta.com> | 2012-02-22 08:55:27 -0800 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2012-02-22 08:55:27 -0800 |
commit | 6556eaf70db21e790aef323c32523fe0c439ec0b (patch) | |
tree | dc084ff21a21fa211c27937ff0ff94698c0c6462 | |
parent | d1071c1207973ee37bbdbc90047f2a7b63ebb4ef (diff) | |
download | vyatta-op-6556eaf70db21e790aef323c32523fe0c439ec0b.tar.gz vyatta-op-6556eaf70db21e790aef323c32523fe0c439ec0b.zip |
Bugfix 5806: Don't show ntp.vyatta.com by default for show ntp
-rw-r--r-- | templates/show/ntp/node.tag/node.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show/ntp/node.tag/node.def b/templates/show/ntp/node.tag/node.def index 8eb5406..e7bdb6a 100644 --- a/templates/show/ntp/node.tag/node.def +++ b/templates/show/ntp/node.tag/node.def @@ -1,3 +1,3 @@ help: Show date and time of specified NTP server -allowed: echo -e 'ntp.vyatta.com'; awk '/^server/ { print $2 }' /etc/ntp.conf -run: /usr/sbin/ntpdate -q ${3:-ntp.vyatta.com} +allowed: awk '/^server/ { print $2 }' /etc/ntp.conf +run: /usr/sbin/ntpdate -q $3 |