linuxShortcuts/Services/logRestartError.sh
2023-06-23 10:10:17 -03:00

7 lines
140 B
Bash
Executable File

#!/bin/bash
/bin/systemctl status --full "$1" >> /home/bruno/.log_error
sleep 20
/bin/systemctl stop "$1"
sleep 3
/bin/systemctl start "$1"