8 lines
156 B
Bash
Executable File
8 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# blob:summary=Restart system time synchronization
|
|
# blob:requires-sudo=true
|
|
|
|
echo "Updating time..."
|
|
sudo systemctl restart systemd-timesyncd
|