minor amends to clock synchronization
renamed date_out variable to untrusted_date_out
This commit is contained in:
parent
f55412cd1e
commit
a9caf2235e
@ -25,12 +25,12 @@ import subprocess
|
|||||||
def main():
|
def main():
|
||||||
stdin = sys.stdin.read(25)
|
stdin = sys.stdin.read(25)
|
||||||
|
|
||||||
date_out = stdin.strip()
|
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$', date_out):
|
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!')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
subprocess.check_call(['date', '-u', '-Iseconds', '-s', date_out],
|
subprocess.check_call(['date', '-u', '-Iseconds', '-s', untrusted_date_out],
|
||||||
stdout=subprocess.DEVNULL)
|
stdout=subprocess.DEVNULL)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
Loading…
Reference in New Issue
Block a user