Created
October 1, 2019 15:51
-
-
Save ericbaranowski/3f66ff452f9e99668571a5ef5f96f3a0 to your computer and use it in GitHub Desktop.
restart_clearlinux_services.sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo systemctl --no-ask-password try-restart containerd.service | |
sudo systemctl --no-ask-password try-restart systemd-networkd.service | |
sudo systemctl --no-ask-password try-restart kvp.service | |
sudo systemctl --no-ask-password try-restart kubelet.service | |
sudo systemctl --no-ask-password try-restart libvirtd.service | |
sudo systemctl --no-ask-password try-restart vss.service | |
sudo systemctl --no-ask-password try-restart systemd-machined.service | |
sudo systemctl --no-ask-password try-restart waagent.service | |
sudo systemctl --no-ask-password try-restart journal-probe.service | |
sudo systemctl --no-ask-password try-restart dbus.service | |
sudo systemctl --no-ask-password try-restart systemd-logind.service | |
echo done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment