summaryrefslogtreecommitdiff
path: root/automated/linux/ltp/ltp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'automated/linux/ltp/ltp.sh')
-rwxr-xr-xautomated/linux/ltp/ltp.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/automated/linux/ltp/ltp.sh b/automated/linux/ltp/ltp.sh
index 4e8ca27..9cc4818 100755
--- a/automated/linux/ltp/ltp.sh
+++ b/automated/linux/ltp/ltp.sh
@@ -101,6 +101,15 @@ run_ltp() {
rm -rf "${LTP_TMPDIR}" || true
}
+# Prepare system
+prep_system() {
+ # Stop systemd-timesyncd if running
+ if systemctl is-active systemd-timesyncd 2>/dev/null; then
+ info_msg "Stopping systemd-timesyncd"
+ systemctl stop systemd-timesyncd
+ fi
+}
+
# Test run.
! check_root && error_msg "This script must be run as root"
create_out_dir "${OUTPUT}"
@@ -141,5 +150,7 @@ else
info_msg "Run install_ltp"
install_ltp
fi
+info_msg "Running prep_system"
+prep_system
info_msg "Running run_ltp"
run_ltp