blob: a1a8ad63f93d4c943d117353e642f46eb56e85e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
basedir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
sh $basedir/runlevel
echo "================= [ setup complete ] ===================="
echo "the system will now reboot"
echo "upon reboot, you can sign in with your chosen username"
echo "if you didn't choose to set up graphical login,"
echo "you can start the desktop by typing 'startx'"
echo "or 'init 4' after login as root"
echo "========================================================="
read -p "press enter to reboot"
reboot
|