mirror of
https://github.com/armbian/autotests.git
synced 2026-01-06 10:31:09 -08:00
13 lines
281 B
Bash
Executable File
13 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
source $SRC/lib/functions.sh
|
|
|
|
TEST_TITLE="Reboot"
|
|
TEST_SKIP="true"
|
|
[[ $DRY_RUN == true ]] && return 0
|
|
|
|
display_alert "$(basename $BASH_SOURCE)" "$(date +%R:%S)" "info"
|
|
display_alert "Rebooting in 3 seconds" "${BOARD_NAME}" "info"
|
|
sleep 3
|
|
remote_exec "reboot"
|
|
sleep 10
|