diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-08-25 15:40:50 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-08-25 15:41:56 +0200 |
commit | 8b334a05e4fbab73e7e060b45c9fb33e68ec8b95 (patch) | |
tree | 2a06664e816d8e664b1e45724a1df82bb232a8dd /src/conf_mode | |
parent | acc5cee5990778c5d4c6a2b06fab186fca13e4de (diff) | |
download | vyos-1x-8b334a05e4fbab73e7e060b45c9fb33e68ec8b95.tar.gz vyos-1x-8b334a05e4fbab73e7e060b45c9fb33e68ec8b95.zip |
ntp.py: fix typo in comment
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/ntp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/ntp.py b/src/conf_mode/ntp.py index 2a6088575..b618cbd89 100755 --- a/src/conf_mode/ntp.py +++ b/src/conf_mode/ntp.py @@ -156,7 +156,7 @@ def apply(ntp): if ntp is not None: os.system('sudo /usr/sbin/invoke-rc.d ntp force-reload') else: - # NTP suuport is removed in the commit + # NTP support is removed in the commit os.system('sudo /usr/sbin/invoke-rc.d ntp stop') os.unlink(config_file) |