Magellan Linux

Annotation of /alx-src/branches/alxconf-060/init.d/alxsettings

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2568 - (hide annotations) (download)
Mon Jul 4 21:16:51 2011 UTC (12 years, 10 months ago) by niro
File size: 24362 byte(s)
-fixed util version: alxconfig-ng-alx -> alxconfig-ng
1 niro 221 #!/bin/bash
2 niro 1976 # $Id$
3 niro 221 # <niro@magellan-linux.de>
4    
5 niro 2007 #%rlevels: 7:s 0:k
6 niro 221 #%start: 41
7     #%stop: 01
8    
9     #deps
10     #%needs:
11     #%before:
12     #%after:
13    
14     # checks first if the client was already configured and if it has an valid serial
15     # if not it runs the autoconfiguration script
16     # these settings will be used for client setup
17     #
18     # if client was valid it first will check if his settings against the server
19     # if no changes are at server side they will be kept, if yes the get updated.
20     # the server settings has higher priority.
21    
22 niro 1976 source /etc/conf.d/rc
23 niro 221 source $rc_functions
24    
25 niro 282 # mysql settings
26 niro 226 source /etc/alxconfig-ng/config.rc
27 niro 282
28     # helper functions
29 niro 2039 source /usr/lib/alxconfig-ng/functions/common
30 niro 226 source /usr/lib/alxconfig-ng/functions/mysqlfunctions
31 niro 227 source /usr/lib/alxconfig-ng/functions/serial_functions
32 niro 257 source /usr/lib/alxconfig-ng/functions/config_modules
33 niro 226 source /usr/lib/alxconfig-ng/functions/config_network
34     source /usr/lib/alxconfig-ng/functions/config_printers
35 niro 239 source /usr/lib/alxconfig-ng/functions/config_sessions
36 niro 226 source /usr/lib/alxconfig-ng/functions/config_x11
37 niro 248 source /usr/lib/alxconfig-ng/functions/config_auth
38 niro 252 source /usr/lib/alxconfig-ng/functions/config_ssh_auth
39 niro 1582 source /usr/lib/alxconfig-ng/functions/config_versions
40 niro 221
41 niro 282 # other needed vars
42 niro 221 ALX_HW_DETECT=false
43 niro 282 ALX_FORCED_RECHECK=false
44 niro 337 ALX_RESET_SETTINGS=false
45     ALX_CONFD_NETWORKING=false
46 niro 221
47 niro 282 # unset vars which may kill us
48 niro 221 unset ALX_SERIAL ALX_STATE
49    
50    
51 niro 282 # setup needed directories
52 niro 226 [ ! -d /etc/alxconfig-ng/state ] && install -d /etc/alxconfig-ng/state
53 niro 221
54 niro 337 update_system_settings()
55     {
56 niro 2153 rc_mecho Checking system setup ...
57 niro 221
58 niro 257 # get the modules settings
59     # ! is the first thing that must be configured !
60     config_modules
61    
62 niro 226 # imports network settings from db
63     config_networking
64    
65     # imports x11 settings from db
66     config_x11
67    
68 niro 248 # imports session settings from db
69 niro 239 config_sessions
70 niro 226
71     # imports printer settings from db
72     config_printing
73 niro 248
74     # imports auth settings from db
75     config_auth
76 niro 252
77     # exchange ssh rsa keys
78 niro 265 HOME=/root config_ssh_auth
79 niro 1582
80     # import version info
81     config_version
82 niro 221 }
83    
84 niro 337 get_system_serial()
85     {
86 niro 350 local CUR_IP CUR_MAC CUR_MTIME ALX_IFACE
87 niro 221
88 niro 350 if [[ ${ALX_CONFD_NETWORKING} = true ]]
89     then
90     ALX_IFACE="$(< ${SETTINGSPATH}/confd-networking)"
91     else
92     ALX_IFACE="eth0"
93     fi
94    
95 niro 282 # check if serial file exists
96 niro 337 if [ -f /etc/alxconfig-ng/serial ] && [[ ${ALX_FORCED_RECHECK} = false ]]
97 niro 221 then
98 niro 226 source /etc/alxconfig-ng/serial
99    
100 niro 282 # start preliminary networking (dhcp)
101 niro 295 preliminary_network start
102 niro 226
103 niro 295 # check if mysql server is reachable
104     # if not abort this script
105     if ! reach_mysql_server
106     then
107     preliminary_network stop
108     exit 1
109     fi
110    
111 niro 1976 CUR_IP=$(ifconfig ${ALX_IFACE} | sed -n '/addr:/s/ [^r]*..//gp')
112     CUR_MAC=$(ifconfig ${ALX_IFACE} | grep HWaddr | cut -d ' ' -f11)
113 niro 221 CUR_MTIME=$(date +%s)
114 niro 226
115 niro 2141 rc_print "Trying to validate my serial ..."
116 niro 226
117 niro 282 # nice serial output
118 niro 221 $CURS_UP
119     $SET_WCOL
120     echo "[ SN: ${ALX_SERIAL} ]"
121    
122     if validate_serial "${ALX_SERIAL}" "${ALX_REG_DATE}" "${CUR_MAC}"
123     then
124     ALX_STATE="ok"
125     else
126 niro 307 # abort on non valid serial
127 niro 221 ALX_STATE="invalid serial"
128 niro 1616 echo "ALX_STATE=\"${ALX_STATE}\"" > /etc/alxconfig-ng/state/state
129 niro 307 show_invalid_serial_msg
130     exit 1
131 niro 221 fi
132    
133     else
134 niro 282 # run hardware detection
135 niro 221 echo
136 niro 337 if [[ ${ALX_FORCED_RECHECK} = true ]]
137 niro 282 then
138 niro 2141 rc_mecho "Hardware autodetection forced by system-administrator"
139 niro 1622 # always disable CONFD_NETWORKING here
140     export ALX_CONFD_NETWORKING="false"
141 niro 282 else
142 niro 2141 rc_mecho "Preparing system for first boot"
143 niro 282 fi
144 niro 221 ALX_HW_DETECT=true
145 niro 2009 hwsetup
146 niro 226
147 niro 282 # set hostname to alx_default_hostname
148     # use old hostname if this is a forced re-check
149 niro 337 [[ ${ALX_FORCED_RECHECK} = true ]] && ALX_DEFAULT_HOSTNAME="$(< /etc/hostname)"
150 niro 221 [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
151     HOSTNAME="${ALX_DEFAULT_HOSTNAME}"
152 niro 226
153 niro 282 # update the hostname on the system for sure
154 niro 230 echo "${HOSTNAME}" > /etc/hostname
155 niro 226
156 niro 282 # start preliminary networking (dhcp)
157 niro 221 preliminary_network start
158 niro 226
159 niro 295 # check if mysql server is reachable
160     # if not abort this script
161     if ! reach_mysql_server
162     then
163     preliminary_network stop
164     exit 1
165     fi
166    
167 niro 2039
168 niro 2509 CUR_IP=$(/sbin/ifconfig ${ALX_IFACE} | sed -n '/addr:/s/ [^r]*..//gp')
169     CUR_MAC=$(/sbin/ifconfig ${ALX_IFACE} | grep HWaddr | cut -d ' ' -f11)
170 niro 221 CUR_MTIME=$(date +%s)
171 niro 226
172 niro 282 # abort now if this is a forced re-check
173 niro 337 if [[ ${ALX_FORCED_RECHECK} = true ]]
174 niro 282 then
175     # but first check the serial
176     source /etc/alxconfig-ng/serial
177    
178 niro 2141 rc_print "Trying to validate my serial ..."
179 niro 282
180     # nice serial output
181     $CURS_UP
182     $SET_WCOL
183     echo "[ SN: ${ALX_SERIAL} ]"
184    
185     if validate_serial "${ALX_SERIAL}" "${ALX_REG_DATE}" "${CUR_MAC}"
186     then
187     ALX_STATE="ok"
188     else
189 niro 307 # abort on non valid serial
190 niro 282 ALX_STATE="invalid serial"
191 niro 307 echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state
192     show_invalid_serial_msg
193     exit 1
194 niro 282 fi
195    
196     # write current state to temp file
197 niro 1616 echo "ALX_STATE=\"${ALX_STATE}\"" > /etc/alxconfig-ng/state/state
198 niro 337 [ -f /hardware-auto-detection ] && rm /hardware-auto-detection
199 niro 282
200     # now export ALX_FORCED_RECHECK=true
201     # that the setting will be updated not inserted !
202     export ALX_FORCED_RECHECK=true
203     return 0
204     fi
205    
206 niro 2141 rc_print "Trying to get new serial ..."
207 niro 226
208 niro 313 # request a new serial; one command now (cause must be done in the same session)
209 niro 348 ALX_SERIAL=$(mysqldo "insert into client_serials (mtime, mac) values('${CUR_MTIME}','${CUR_MAC}');
210 niro 314 select last_insert_id();")
211 niro 221
212 niro 337 if [[ ${ALX_SERIAL} != NULL ]]
213 niro 221 then
214 niro 282 # nice serial output
215 niro 221 $CURS_UP
216     $SET_WCOL
217     echo "[ SN: ${ALX_SERIAL} ]"
218 niro 226
219 niro 348 # set ALX_STATE to ok so everybody knows that everything was ok
220 niro 221 ALX_STATE=ok
221 niro 226
222 niro 1616 echo "ALX_SERIAL=\"${ALX_SERIAL}\"" > /etc/alxconfig-ng/serial
223     echo "ALX_REG_DATE=\"${CUR_MTIME}\"" >> /etc/alxconfig-ng/serial
224 niro 226
225 niro 221 evaluate_retval
226     else
227 niro 282 # print false (works only if this is the first statement here)
228 niro 221 evaluate_retval
229 niro 226
230 niro 282 # set ALX_STATE to error so everybody sees there was an error
231 niro 221 ALX_STATE=error
232 niro 226
233 niro 282 # show an error that no new serial was found
234     # nice serial output
235 niro 221 $CURS_UP
236     $SET_WCOL
237     echo -e "[ SN: ${COLRED}None, 0${COLDEFAULT} ]"
238     fi
239     fi
240 niro 226
241 niro 282 # write current state to temp file
242 niro 1616 echo "ALX_STATE=\"${ALX_STATE}\"" > /etc/alxconfig-ng/state/state
243     echo "ALX_IFACE=\"${ALX_IFACE}\"" >> /etc/alxconfig-ng/state/state
244 niro 221 }
245    
246    
247 niro 337 check_is_configured()
248     {
249 niro 226 if [ -f /etc/alxconfig-ng/state/configured ]
250 niro 221 then
251     export ALX_CONFIGURED=true
252     else
253     export ALX_CONFIGURED=false
254     fi
255     }
256    
257    
258     # imports current settings to the database resolved by the hardware detection
259 niro 337 import_settings_to_db()
260     {
261 niro 282 # note: networking is always 'dhcp' if hw was autodetected
262     # note: default_domain/hostname is set in config.rc
263 niro 229
264 niro 282 # to be safe, we do some sanity checks
265 niro 221 [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
266     [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
267 niro 229
268 niro 2009 # vars used by hwsetup
269 niro 221 local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
270     local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
271     local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
272 niro 229
273 niro 2009 # get setting from hwsetup
274 niro 2008 source /etc/conf.d/hwsetup/knoppix
275     source /etc/conf.d/hwsetup/mouse
276 niro 229
277 niro 221 echo
278 niro 2141 rc_mecho "Importing detected settings to database"
279 niro 229
280 niro 282 # network
281 niro 2141 rc_mecho " Network settings ..."
282 niro 337 if [[ ${ALX_CONFD_NETWORKING} = true ]]
283     then
284     # get settings
285     for iface in $(onboot_interface_list ${network_settings}/net.*)
286     do
287     [[ $(< ${SETTINGSPATH}/confd-networking) != ${iface} ]] && continue
288 niro 2141 rc_echo "WARNING: only importing settings for interface [ ${iface} ] !"
289     source ${network_settings}/net.${iface} || echo "Error: could not read '${network_settings}/net.${iface}'"
290 niro 2122 NETCARD_DRIVER="$(cat /etc/modprobe.d/net.${iface}.conf | cut -d' ' -f3)"
291 niro 337
292 niro 348 mysqldo "insert into cfg_network(
293 niro 337 hostname,
294     serial,
295     module,
296     domain,
297     networking,
298     netmask,
299     dns,
300     gateway,
301     broadcast,
302     ip,
303     forcemacto,
304     wireless_bitrate,
305     wireless_channel,
306     wireless_essid,
307     wireless_frequency,
308     wireless_mode,
309     wireless_nick,
310     wireless_auth_mode,
311     wireless_key_length,
312     wireless_key,
313     wireless_key_ascii
314     )
315     values(
316     '${ALX_DEFAULT_HOSTNAME}',
317     '${ALX_SERIAL}',
318     '${NETCARD_DRIVER}',
319     '${ALX_DEFAULT_DOMAIN}',
320     '${NETWORKING}',
321     '${NETMASK}',
322     '${NAMESERVER}',
323     '${GATEWAY}',
324     '${BROADCAST}',
325     '${IP}',
326     '${FORCE_MAC_TO}',
327     '${WIRELESS_BITRATE}',
328     '${WIRELESS_CHANNEL}',
329     '${WIRELESS_ESSID}',
330     '${WIRELESS_FREQUENCY}',
331     '${WIRELESS_MODE}',
332     '${WIRELESS_NICK}',
333     '${WIRELESS_AUTH_MODE}',
334     '${WIRELESS_KEY_LENGTH}',
335     '${WIRELESS_KEY}',
336     '${WIRELESS_KEY_ASCII}'
337     );"
338    
339     # only insert the *FIRST* iface
340     break
341     done
342     else
343 niro 348 mysqldo "insert into cfg_network(
344 niro 337 hostname,
345     serial,
346     module,
347     domain,
348     networking
349     )
350     values(
351     '${ALX_DEFAULT_HOSTNAME}',
352     '${ALX_SERIAL}',
353     '${NETCARD_DRIVER}',
354     '${ALX_DEFAULT_DOMAIN}',
355     'dhcp'
356     );"
357     fi
358 niro 221 evaluate_retval
359 niro 229
360 niro 282 # xserver
361 niro 2141 rc_mecho " Graphic settings ..."
362 niro 282 # xserver general
363 niro 348 ( mysqldo "insert into cfg_graphic(
364 niro 221 serial,
365     module,
366     resolution,
367 niro 229 depth,
368 niro 1582 refresh_rate
369 niro 221 )
370     values(
371     '${ALX_SERIAL}',
372     '${XMODULE}',
373     '1024x768',
374 niro 229 '16',
375 niro 1582 '60'
376 niro 252 );"; )
377     evaluate_retval
378 niro 229
379 niro 221 # input
380 niro 2141 rc_mecho " Input settings ..."
381 niro 348 mysqldo "insert into cfg_input(serial,mouse) values('${ALX_SERIAL}','${XMOUSETYPE}');"
382 niro 221 evaluate_retval
383 niro 252
384     # auth
385 niro 2141 rc_mecho " Authentification settings ..."
386 niro 348 mysqldo "insert into client_auth(
387 niro 252 serial,
388     username,
389     shell,
390     vnc,
391     samba,
392     station
393     )
394     values(
395     '${ALX_SERIAL}',
396     '${ALX_UNPRIV_USER}',
397     '',
398     '',
399     '',
400     ''
401     );"
402     evaluate_retval
403    
404 niro 263 # exchange ssh rsa keys - the first boot needs this !
405     # or no reboot will work via the webadmin
406 niro 2141 rc_mecho " SSH authentification settings ..."
407 niro 264 HOME=/root config_ssh_auth
408 niro 263 evaluate_retval
409    
410 niro 348 # autostart
411 niro 2141 rc_mecho " Autostart settings ..."
412 niro 348 mysqldo "insert into cfg_autostart(serial,session) values('${ALX_SERIAL}','');"
413    
414     # screensaver
415 niro 2141 rc_mecho " Screensaver settings ..."
416 niro 348 mysqldo "insert into cfg_screensaver(serial,screensaver) values('${ALX_SERIAL}','')"
417    
418 niro 1582 # version info
419 niro 2141 rc_mecho " OS version info ..."
420 niro 1582 local alx_os
421     local alx_utils
422     alx_os="$(< /etc/mageversion)"
423 niro 2568 alx_utils="$(magequery -n alxconfig-ng | sed 's:.*\[\ \(.*\)\ \].*:\1:')"
424     alx_utils="${alx_utils/alxconfig-ng-}"
425 niro 1582 mysqldo "insert into client_version(serial,os,utils) values('${ALX_SERIAL}','${alx_os}','${alx_utils}')"
426    
427 niro 252 evaluate_retval
428 niro 221 }
429    
430 niro 282 # imports current settings to the database resolved by the hardware detection
431 niro 337 update_settings_in_db()
432     {
433 niro 282 # note: networking is always 'dhcp' if hw was autodetected
434     # note: default_domain/hostname is set in config.rc or exported
435     # note: we updating only hardware settings here !
436    
437     # to be safe, we do some sanity checks
438     [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
439     [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
440    
441 niro 2009 # vars used by hwsetup
442 niro 282 local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
443     local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
444     local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
445    
446 niro 2009 # get setting from hwsetup
447 niro 2008 source /etc/conf.d/hwsetup/knoppix
448     source /etc/conf.d/hwsetup/mouse
449 niro 282
450     echo
451 niro 2141 rc_mecho "Updating detected settings in database"
452 niro 282
453     # network
454 niro 2141 rc_mecho " Network settings ..."
455 niro 337 if [[ ${ALX_CONFD_NETWORKING} = true ]]
456     then
457     # get settings
458     #source ${rc_base}/init.d/network &> /dev/null
459     for iface in $(onboot_interface_list ${network_settings}/net.*)
460     do
461     [[ $(< ${SETTINGSPATH}/confd-networking) != ${iface} ]] && continue
462 niro 2141 rc_echo "WARNING: only importing settings for interface [ ${iface} ] !"
463 niro 337 source ${network_settings}/net.${iface} || exit 1
464 niro 2122 NETCARD_DRIVER="$(cat /etc/modprobe.d/net.${iface}.conf | cut -d' ' -f3)"
465 niro 282
466 niro 348 mysqldo "update cfg_network set
467 niro 337 hostname='${ALX_DEFAULT_HOSTNAME}',
468     module='${NETCARD_DRIVER}',
469     domain='${ALX_DEFAULT_DOMAIN}',
470     networking='${NETWORKING}',
471     netmask='${NETMASK}',
472     dns='${NAMESERVER}',
473     gateway='${GATEWAY}',
474     broadcast='${BROADCAST}',
475     ip='${IP}',
476     forcemacto='${FORCE_MAC_TO}',
477     wireless_bitrate='${WIRELESS_BITRATE}',
478     wireless_channel='${WIRELESS_CHANNEL}',
479     wireless_essid='${WIRELESS_ESSID}',
480     wireless_frequency='${WIRELESS_FREQUENCY}',
481     wireless_mode='${WIRELESS_MODE}',
482     wireless_nick='${WIRELESS_NICK}',
483     wireless_auth_mode='${WIRELESS_AUTH_MODE}',
484     wireless_key_length='${WIRELESS_KEY_LENGTH}',
485     wireless_key='${WIRELESS_KEY}',
486     wireless_key_ascii='${WIRELESS_KEY_ASCII}'
487     where serial=${ALX_SERIAL};"
488    
489     # only insert the *FIRST* iface
490     break
491     done
492     else
493 niro 348 mysqldo "update cfg_network set
494 niro 337 hostname='${ALX_DEFAULT_HOSTNAME}',
495     module='${NETCARD_DRIVER}',
496     domain='${ALX_DEFAULT_DOMAIN}',
497     networking='dhcp'
498     where serial=${ALX_SERIAL};"
499     fi
500 niro 282 evaluate_retval
501    
502     # xserver
503 niro 2141 rc_mecho " Graphic settings ..."
504 niro 282 # xserver general
505 niro 348 mysqldo "update cfg_graphic set
506 niro 282 module='${XMODULE}',
507     resolution='1024x768',
508     depth='16',
509 niro 1582 refresh_rate='60'
510 niro 282 where serial=${ALX_SERIAL};"
511     evaluate_retval
512    
513     # input
514 niro 2141 rc_mecho " Input settings ..."
515 niro 348 mysqldo "update cfg_input set mouse='${XMOUSETYPE}' where serial=${ALX_SERIAL};"
516 niro 282 evaluate_retval
517 niro 1582
518     # version info
519 niro 2141 rc_mecho " OS version info ..."
520 niro 1582 local alx_os
521     local alx_utils
522     alx_os="$(< /etc/mageversion)"
523     alx_utils="$(magequery -n alxconfig-ng-alx | sed 's:.*\[\ \(.*\)\ \].*:\1:')"
524     alx_utils="${alx_utils/alxconfig-ng-alx-}"
525     mysqldo "update client_version set os='${alx_os}', utils='${alx_utils}' where serial=${ALX_SERIAL};"
526 niro 282 }
527    
528 niro 221 # imports current settings to the local system resolved by the hardware detection
529 niro 337 # we only need the network settings
530     import_settings_local()
531     {
532 niro 282 # note: networking is always 'dhcp' if hw was autodetected
533     # note: default_domain/hostname is set in config.rc
534 niro 226
535 niro 282 # to be safe, we do some sanity checks
536 niro 221 [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
537     [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
538 niro 226
539 niro 2009 # vars used by hwsetup
540 niro 221 local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
541     local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
542     local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
543    
544 niro 2009 # get setting from hwsetup
545 niro 2008 source /etc/conf.d/hwsetup/knoppix
546 niro 226
547 niro 221 echo
548 niro 2141 rc_mecho "Importing detected settings to local system"
549 niro 221
550 niro 337 if [[ ${ALX_CONFD_NETWORKING} = false ]]
551     then
552 niro 2039 # set an device alias for modprobe.conf
553 niro 1622 [ ! -d /etc/modprobe.d ] && install -d /etc/modprobe.d
554 niro 2509 # update only if not the same (to speed up bootprocess - no depmod)
555     CONFIG="/etc/modprobe.d/net.${ALX_IFACE}.conf"
556     clearconfig
557     addconfig "alias ${ALX_IFACE} ${cfg_network_module}"
558 niro 337
559 niro 2509 # update confd-networking default iface
560     [ ! -d ${SETTINGSPATH} ] && install -d ${SETTINGSPATH}
561     CONFIG="${SETTINGSPATH}/confd-networking"
562     clearconfig
563     addconfig "${ALX_IFACE}"
564    
565 niro 337 # regenerate modprobe.conf
566 niro 2141 [ -x $(which modules-update) ] && modules-update || rc_echo "modules-update not found!"
567 niro 337 evaluate_retval
568     fi
569    
570 niro 282 # set system state to 'already configured'
571 niro 226 touch /etc/alxconfig-ng/state/configured
572 niro 252
573 niro 1715 # install slim desktopmanager configuration
574 niro 1718 config_display_manager
575 niro 1715
576 niro 313 # if only an recheck was forced than abort now
577     [[ ${ALX_FORCED_RECHECK} = true ]] && return 0
578    
579 niro 275 # create a fresh fluxbox directory
580     [ -d ${ALX_UNPRIV_HOME}/.fluxbox ] && rm -rf ${ALX_UNPRIV_HOME}/.fluxbox
581     install -d ${ALX_UNPRIV_HOME}/.fluxbox
582    
583     # now generate fluxbox config files
584    
585     # fluxbox main config
586 niro 2470 local fbinit
587     if [ -f ${ALX_SKELETONS}/fluxbox/init ]
588     then
589     fbinit="${ALX_SKELETONS}/fluxbox/init"
590     else
591     fbinit="/usr/share/fluxbox/init"
592     fi
593     cat ${fbinit} > ${ALX_UNPRIV_HOME}/.fluxbox/init
594 niro 275
595 niro 319 # fluxbox autostart
596 niro 2470 CONFIG="${ALX_UNPRIV_HOME}/.fluxbox/apps"
597     # do not show decorations on messages generated with xmessage
598     if [ -x /usr/bin/xmessage ]
599     then
600     addconfig '[app] (xmessage)'
601     addconfig ' [Deco] {NONE}'
602     addconfig '[end]'
603     fi
604     # add icon utility
605     [ -x /usr/bin/idesk ] && addconfig '[startup] {nohup idesk > /dev/null &}'
606     # add numlock utility
607     [ -x /usr/bin/numlockx ] && addconfig '[startup] {nohup numlockx on &}'
608 niro 319
609 niro 2470 # fluxbox hotkeys
610     local fbkeys
611     if [ -f ${ALX_SKELETONS}/fluxbox/keys ]
612     then
613     fbkeys="${ALX_SKELETONS}/fluxbox/keys"
614     else
615     fbkeys="/usr/share/fluxbox/keys"
616     fi
617     cat ${fbkeys} > ${ALX_UNPRIV_HOME}/.fluxbox/keys
618    
619 niro 275 # fluxbox menu header
620 niro 2039 cat ${ALX_SKELETONS}/fluxbox/menu.header > ${ALX_UNPRIV_HOME}/.fluxbox/menu
621 niro 275
622 niro 297 # now fix it with proper messages :P
623     local ver="$(< /etc/mageversion)"
624 niro 2039 sed -i "s:@CHANGEME@:alx-${ver} #${ALX_SERIAL}:g" ${ALX_UNPRIV_HOME}/.fluxbox/menu
625 niro 297
626 niro 275 # add a newline (maybe there is no crlf in the header)
627     echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
628    
629     # fluxbox menu footer
630 niro 2039 cat ${ALX_SKELETONS}/fluxbox/menu.footer >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
631 niro 275
632     # add a newline (maybe there is no crlf in the footer)
633     echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
634    
635 niro 313 # setup some standart icons (sysinfo.lnk)
636     # clean desktop icon location
637 niro 2455 [ -d ${ALX_UNPRIV_HOME}/.idesktop ] && rm -rf ${ALX_UNPRIV_HOME}/.idesktop
638     install -d ${ALX_UNPRIV_HOME}/.idesktop
639 niro 313
640 niro 2471 # add shutdown, reboot icons
641     local name
642     # default settings
643     declare -i x=30
644     declare -i y=30
645     for i in shutdown reboot
646     do
647     case ${i} in
648 niro 2479 shutdown) name="Herunterfahren" ;;
649     reboot) name="Neustarten" ;;
650 niro 2471 esac
651    
652     generate_icon \
653     --name "${name}" \
654     --command "/usr/lib/alxconfig-ng/bin/user_${i}.sh" \
655     --icon "${ALX_SESSIONS_ICONS}/${i}.png" \
656     --dest "${dest}/${i}.lnk" \
657     --xres "${x}" \
658     --yres "${y}"
659    
660     y=$((${y} + 80))
661     done
662    
663 niro 313 # last but not least gen a icon with some sys informations
664     local sysinfo
665     local osversion
666     local xres
667     local yres
668    
669     osversion="$(< /etc/mageversion)"
670     sysinfo="Hostname: ${ALX_DEFAULT_HOSTNAME} Serial: #${ALX_SERIAL} OS: alx-${osversion} Kernel: $(uname -r)"
671    
672     # at first boot we got always a resolution of 1024x768-16@60
673     # middle of the screen
674     # (no txt - length required, xtdesk manage that itself)
675     xres="$((1024 / 2))"
676     # default y pos (full yres -22 !)
677     yres="$((768 - 22 ))"
678    
679     generate_icon \
680     --name "${sysinfo}" \
681     --command "exit 0" \
682     --icon "${ALX_SESSIONS_ICONS}/sysinfo.png" \
683 niro 2455 --dest "${ALX_UNPRIV_HOME}/.idesktop/sysinfo.lnk" \
684 niro 313 --xres "${xres}" \
685     --yres "${yres}" \
686     --icon-width "1" \
687     --icon-height "1"
688    
689 niro 282 # set correct permissions
690     chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}
691     chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox
692     chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox
693 niro 2455 chmod 0755 ${ALX_UNPRIV_HOME}/.idesktop
694 niro 2470 if [ -f ${ALX_UNPRIV_HOME}/.ideskrc ]
695     then
696     chmod 0644 ${ALX_UNPRIV_HOME}/.ideskrc
697     fi
698 niro 221 }
699    
700 niro 282 # start|stop
701 niro 337 preliminary_network()
702     {
703 niro 221 local module
704 niro 226
705     if [ -f /etc/alxconfig-ng/state/configured ]
706 niro 221 then
707 niro 337 # compat for old clients
708     if [ -f ${SETTINGSPATH}/modules ]
709     then
710     # get module name
711     module=$(cat ${SETTINGSPATH}/modules)
712     modprobe ${module}
713     fi
714 niro 1976
715 niro 221 else
716 niro 2009 # vars used by hwsetup
717 niro 221 local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
718     local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
719 niro 226
720 niro 2009 # get setting from hwsetup
721 niro 2008 source /etc/conf.d/hwsetup/knoppix
722 niro 221 modprobe ${NETCARD_DRIVER}
723     fi
724 niro 226
725 niro 221 case $1 in
726     start)
727     # keeping like always safe:
728     # no network should be startet here,
729     # so we can delete all pid files if one exists
730 niro 2156 if [[ ! -z $(pidof $(basename ${ALX_DHCP_PROG})) ]]
731 niro 221 then
732 niro 2141 rc_mecho "Forcing network down"
733 niro 2156 killall $(basename ${ALX_DHCP_PROG}) &> /dev/null
734 niro 221 sleep 1
735     fi
736 niro 2039 [[ ${ALX_CONFD_NETWORKING} = true ]] && ${rc_base}/init.d/network stop
737 niro 226
738 niro 2141 rc_mecho "Starting preliminary networking ... "
739 niro 226
740 niro 337 # start network configured from /etc/conf.d
741     if [[ ${ALX_CONFD_NETWORKING} = true ]]
742     then
743     ${rc_base}/init.d/network start
744     else
745 niro 2141 rc_print "Starting default dhcp based networking ... "
746 niro 2509 ${ALX_DHCP_PROG} ${ALX_DHCP_START} ${ALX_IFACE} &> /dev/null
747 niro 337 evaluate_retval
748     fi
749 niro 221 ;;
750 niro 226
751 niro 221 stop)
752 niro 2141 rc_mecho "Stopping preliminary networking ... "
753 niro 337 if [[ ${ALX_CONFD_NETWORKING} = true ]]
754     then
755     ${rc_base}/init.d/network stop
756     else
757 niro 2141 rc_print "Stopping default dhcp based networking ... "
758 niro 2156 ifconfig ${ALX_IFACE} down
759 niro 337 fi
760 niro 2156 if [[ ! -z $(pidof $(basename ${ALX_DHCP_PROG})) ]]
761 niro 221 then
762 niro 2156 killall $(basename ${ALX_DHCP_PROG}) &> /dev/null
763 niro 1596 sleep 1
764 niro 221 fi
765     evaluate_retval
766     ;;
767 niro 226
768 niro 221 *)
769     echo "Usage: preliminary_network {start|stop}"
770     ;;
771     esac
772     }
773    
774 niro 337 reset_system_settings()
775     {
776     # force load of de kbdkeys
777     loadkeys -q de
778 niro 2141 rc_echo
779     rc_echo -en ${COLRED}
780     rc_echo -n "*** Warning: you are about to reset *all* local settings on this system!"
781     rc_echo -e ${COLDEFAULT}
782     rc_echo "*** Do you really want to continue ?"
783     rc_echo -n "*** Enter 'yes' to continue, anything else to abort: "
784 niro 337 read kbinsert
785     if [[ ${kbinsert} = yes ]]
786     then
787 niro 2141 rc_echo -en ${COLRED}
788     rc_echo -n "*** OK, you really want it ... killing all settings: "
789 niro 337 for i in 3 2 1 now
790     do
791 niro 2141 rc_echo -n " ${i}"
792 niro 337 sleep 1
793     done
794 niro 2141 rc_echo -e ${COLDEFAULT}
795 niro 337
796     ## reset all settings:
797     rm -rf ${SETTINGSPATH}/*
798     rm -f /etc/alxconfig-ng/serial
799     rm -rf /etc/alxconfig-ng/state
800    
801 niro 357 # clear all printers & net-shares
802 niro 2122 :> /etc/printcap
803 niro 357
804 niro 2122 # remove lprng
805     rc-config del lprng &> /dev/null
806 niro 357
807     # remove all user settings
808     [ -d ${ALX_UNPRIV_HOME} ] && rm -rf ${ALX_UNPRIV_HOME}
809    
810     # remove all ica-sessions
811 niro 359 find ${ALX_ICA_SESSIONS} -type f -name '*.ica' | xargs rm
812 niro 357
813     # remove all old nics and modules configs
814     find /etc/conf.d -type f -name 'net.*' | xargs rm
815 niro 2122 find /etc/modprobe.d -type f -name 'net.*' | xargs rm
816 niro 357
817     # restore default networking
818     cat ${ALX_SKELETONS}/net/net.eth0 > /etc/conf.d/net.eth0
819    
820 niro 2141 rc_echo "I am done now, press [Enter] to reboot system ..."
821 niro 348 else
822 niro 2141 rc_echo "Aborted, press [Enter] to reboot system ..."
823 niro 337 fi
824 niro 348 read
825     reboot
826 niro 337 }
827    
828     onboot_interface_list()
829     {
830     local file
831     local devices
832     local iface
833    
834     # get list of all devices
835     for file in $@
836     do
837     if [[ $(read_value ONBOOT ${file}) = yes ]]
838     then
839     iface="$(basename ${file} | sed s/net.//)"
840     # exclude backup files
841     case "${iface}" in
842     *~) ;;
843     *) devices="${devices} $(basename ${file} | sed s/net.//)" ;;
844     esac
845     fi
846     done
847    
848     echo "${devices}"
849     }
850    
851 niro 348 # read values from net.* files
852 niro 337 read_value()
853     {
854     local var="$1"
855     local file="$2"
856     local value
857    
858     # local all possible vars
859     # global
860     local ONBOOT
861     local NETWORKING
862    
863     # static
864     local IP
865     local NETMASK
866     local BROADCAST
867     local NETWORKING
868     local FORCE_MAC_TO
869    
870     # dhcp
871     local DHCP_PROG
872     local DHCP_START
873     local DHCP_STOP
874    
875     # default gw
876     local GATEWAY
877     local GATEWAY_IF
878    
879     # wireless extensions
880     local WIRELESS_AP
881     local WIRELESS_AUTH_MODE
882     local WIRELESS_BITRATE
883     local WIRELESS_CHANNEL
884     local WIRELESS_DEFAULT_KEY
885     local WIRELESS_ESSID
886     local WIRELESS_FREQUENCY
887     local WIRELESS_KEY
888     local WIRELESS_KEY_ASCII
889     local WIRELESS_KEY_0
890     local WIRELESS_KEY_1
891     local WIRELESS_KEY_2
892     local WIRELESS_KEY_3
893     local WIRELESS_KEY_LENGTH
894     local WIRELESS_MODE
895     local WIRELESS_NICK
896     local WIRELESS_NWID
897     local WIRELESS_POWER
898    
899     source ${file}
900     eval value=\$$(echo ${var})
901     echo "${value}"
902     }
903    
904 niro 221 case $1 in
905     start)
906 niro 337 # check for global overrides
907     [ -f ${SETTINGSPATH}/confd-networking ] && ALX_CONFD_NETWORKING=true
908     [ -f /hardware-auto-detection ] && ALX_FORCED_RECHECK=true
909     read_cmdline hardware-auto-detection && ALX_FORCED_RECHECK=true
910     read_cmdline alx-reset-settings && ALX_RESET_SETTINGS=true
911    
912     # kill all settings if requested
913     if [[ ${ALX_RESET_SETTINGS} = true ]]
914     then
915     reset_system_settings
916     fi
917    
918 niro 282 # retrieve or validate current serial
919 niro 221 get_system_serial
920 niro 282 if [[ ${ALX_HW_DETECT} = true ]]
921 niro 221 then
922 niro 282 if [[ ${ALX_FORCED_RECHECK} = true ]]
923     then
924     update_settings_in_db
925     else
926     import_settings_to_db
927     fi
928 niro 221 import_settings_local
929 niro 252
930     # here we should also exchange the ssh keys
931     # or the system cannot be rebooted after
932     # the first start via the alx-webadmin
933     config_ssh_auth
934 niro 221 fi
935 niro 252
936 niro 282 # now setup system configuration
937     # alx_setup_or_whatever_it_will_be_called()
938 niro 348 [[ ${ALX_HW_DETECT} = false ]] && update_system_settings
939 niro 221
940 niro 282 # stop at last the preliminary networking (dhcp)
941 niro 221 preliminary_network stop
942     ;;
943 niro 282
944 niro 221 stop)
945 niro 282 # unset_alx_connected #--> now in alxsetstate-rc6
946 niro 221 # ! important !: del systemstate
947 niro 226 [ -f /etc/alxconfig-ng/state/state ] && rm /etc/alxconfig-ng/state/state
948 niro 221 sleep 0.1
949     ;;
950 niro 2039
951 niro 221 *)
952     echo "Usage: $0 {start|stop} ..."
953     ;;
954     esac

Properties

Name Value
svn:executable *