mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
9 lines
249 B
Bash
9 lines
249 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: reboot.sh
|
|
## Desc: Reboot VM
|
|
################################################################################
|
|
|
|
echo "Reboot VM"
|
|
sudo reboot
|