clock sync: drop untrusted_ prefix after value validation, fix error msg

This commit is contained in:
Marek Marczykowski-Górecki 2017-07-12 10:39:58 +02:00
parent 3e6881f59f
commit b8fed7f754
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -28,9 +28,10 @@ def main():
untrusted_date_out = stdin.strip()
if not re.match(r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\+00:?00$', untrusted_date_out):
sys.stderr.write('Invalid date received, aborting!')
sys.stderr.write('Invalid date received, aborting!\n')
sys.exit(1)
subprocess.check_call(['date', '-u', '-Iseconds', '-s', untrusted_date_out],
date_out = untrusted_date_out
subprocess.check_call(['date', '-u', '-Iseconds', '-s', date_out],
stdout=subprocess.DEVNULL)
if __name__ == '__main__':