Annotation of elwix/config/etc/default/rc.initial, revision 1.1.2.2
1.1.2.1 misho 1: #!/bin/sh
2: #
3: # ELWIX Initial RC Menu script
4: #
1.1.2.2 ! misho 5: # $Id: rc.initial,v 1.1.2.1 2013/01/24 13:14:15 misho Exp $
1.1.2.1 misho 6: #
7:
8: trap : 2
9: trap : 3
10: trap : 18
11: exec </dev/console >/dev/console 2>/dev/console
12: MAGIC_MENU="menu"
13:
14: menu()
15: {
16: echo
17: echo
18: echo "ELWIX - console setup"
19: echo "*********************"
20: echo "0) Logout"
21: echo "1) Interfaces: assign network ports"
22: echo "2) Reset root password"
23: echo "3) Reset webGUI password"
24: echo "4) Reset to factory defaults"
25: echo "5) Reboot system"
26: echo "6) Ping host"
27: echo "7) SSH to host"
28: echo "8) Go to shell"
29: echo "9) Clone system on other drive";
30: echo
31:
32: read -p "Enter number: " opcode
33:
34: case ${opcode} in
35: 0)
36: exit
37: ;;
38: 1)
39: IFACES=$(ifconfig -l)
40: echo
41: echo "Available interfaces: $IFACES"
42: read -p " +Which from them: " iface
43: read -p " +Name of interface $iface []: " name
44: read -p " +Setup management vlan 4093 on $iface? [no|yes]: " mgmt
45: read -p " +IPv4 address/mask of interface $iface [dhcp|x.x.x.x/x]: " ip4
46: read -p " +IPv6 address/mask of interface $iface [auto|x:x:x::x/x]: " ip6
47: if [ X"$mgmt" = X"yes" -o X"$mgmt" = "y" ]; then
48: cfexec sh -c "echo $iface >/etc/mylan"
49: fi
50: ifconfig $iface description "$name" up
51: if [ -n "$ip4" ]; then
52: if [ X"$ip4" != X"dhcp" ]; then
53: ifconfig $iface inet alias $ip4
54: else
55: dhclient $iface
56: fi
57: fi
58: if [ -n "$ip6" ]; then
59: ifconfig $iface inet6 auto_linklocal -ifdisabled
60: if [ X"$ip6" != X"auto" ]; then
61: ifconfig $iface inet6 -accept_rtadv
62: ifconfig $iface inet6 alias $ip6
63: else
64: ifconfig $iface inet6 accept_rtadv
65: fi
66: fi
67: ;;
68: 2)
69: passwd root
70: ;;
71: 3)
72: echo
73: read -p "New system webGUI password: " pass
74: read -p "Confirm system webGUI password: " confirm
75: if [ X"$pass" = X"$confirm" ]; then
76: cfexec xmler -s /elwix/system/password /elwix/etc/config.xml \
77: $(md5 -qs "$pass")
78: else
79: echo "Error:: passwords are different ..."
80: fi
81: ;;
82: 4)
83: echo
84: echo "Restore factory defaults ..."
1.1.2.2 ! misho 85: read -p " +Are you sure for restore and clear all changes? [no|yes]: " ans
! 86: if [ X"$ans" = X"yes" -o X"$ans" = "y" ]; then
! 87: cfexec rm -rf /elwix/etc/rc.S /elwix/etc/rc.s /elwix/etc/rc.t
! 88: cfexec tar -xzpf /elwix/backup/.var.tgz -C /elwix/altroot
! 89: cfexec tar -xzpf /elwix/altroot/backup/.etc.tgz -C /elwix
! 90: fi
1.1.2.1 misho 91: ;;
92: 5)
93: reboot
94: ;;
95: 6)
96: read -p " +Address: " host
97: read -p " +Number packets [4]: " cx
98: ping -n -c ${cx:-4} ${host:-localhost}
99: ;;
100: 7)
101: read -p " +Address: " host
102: read -p " +Port [22]: " port
103: read -p " +User [$USER]: " user
104: ssh -p ${port:-22} -l ${user:-$USER} ${host:-localhost}
105: ;;
106: 8)
107: $SHELL
108: ;;
109: 9)
110: echo
111: camcontrol devlist
112: echo
113: read -p " +Select drive [like: ada1]: " dev
114: if [ -n "$dev" ]; then
115: if `disklabel $dev`; then
116: read -p " +This is right choice? [no|yes]: " ask
117: if [ X"$ask" = X"yes" -o X"$ask" = X"y" ]; then
118: sysctl -w kern.geom.debugflags=16
119: dd if=/dev/ufs/elwix of=/dev/$dev
120: sysctl -w kern.geom.debugflags=0
121: fi
122: fi
123: fi
124: ;;
125: esac
126: }
127:
128: ### main()
129:
130: while : ; do
131: if [ -r /etc/disablemenu ]; then
132: echo
133: echo
134: echo "*** Console menu disabled. ***"
135: echo
136:
137: stty -echo
138: read tmp
139: stty echo
140: if [ X"${tmp}" = X"${MAGIC_MENU}" ]; then
141: echo
142: echo "> OK, temporary unhide menu ..."
143: echo
144:
145: menu
146: fi
147: else
148: menu
149: fi
150: done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>