summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipatests/test_integration/tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipatests/test_integration/tasks.py b/ipatests/test_integration/tasks.py
index cee547683..72196914f 100644
--- a/ipatests/test_integration/tasks.py
+++ b/ipatests/test_integration/tasks.py
@@ -412,8 +412,8 @@ def sync_time(host, server):
leaves ntpd stopped.
"""
- host.run_command(['sudo', 'systemctl', 'stop', 'ntpd'])
- host.run_command(['sudo', 'ntpdate', server.hostname])
+ host.run_command(['systemctl', 'stop', 'ntpd'])
+ host.run_command(['ntpdate', server.hostname])
def connect_replica(master, replica):