8 lines
245 B
Bash
8 lines
245 B
Bash
|
|
#!/bin/bash
|
||
|
|
################################################################################
|
||
|
|
## File: reboot.sh
|
||
|
|
## Desc: Reboot VM
|
||
|
|
################################################################################
|
||
|
|
|
||
|
|
echo "Reboot VM"
|
||
|
|
sudo reboot
|