#!/bin/bash

echo "Désactivation de systemd-timesyncd.service"
systemctl stop systemd-timesyncd.service
systemctl disable systemd-timesyncd.service
systemctl mask systemd-timesyncd.service

exit 0
