Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

alx-src/trunk/alxconfig-ng/init.d/alxsettings revision 314 by niro, Wed Aug 31 23:55:22 2005 UTC alx-src/branches/alxconf-060/init.d/alxsettings revision 2122 by niro, Mon May 16 11:08:31 2011 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2    # $Id$
3  # <niro@magellan-linux.de>  # <niro@magellan-linux.de>
4    
5  #%rlevels: 7:s 0:k 6:k  #%rlevels: 7:s 0:k
6  #%start: 41  #%start: 41
7  #%stop: 01  #%stop: 01
8    
# Line 11  Line 11 
11  #%before:  #%before:
12  #%after:  #%after:
13    
 # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/init.d/alxsettings,v 1.20 2005-08-31 23:55:22 niro Exp $  
   
14  # checks first if the client was already configured and if it has an valid serial  # checks first if the client was already configured and if it has an valid serial
15  # if not it runs the autoconfiguration script  # if not it runs the autoconfiguration script
16  # these settings will be used for client setup  # these settings will be used for client setup
# Line 21  Line 19 
19  # if no changes are at server side they will be kept, if yes the get updated.  # if no changes are at server side they will be kept, if yes the get updated.
20  # the server settings has higher priority.  # the server settings has higher priority.
21    
22  source /etc/sysconfig/rc  source /etc/conf.d/rc
23  source $rc_functions  source $rc_functions
24    
25  # mysql settings  # mysql settings
26  source /etc/alxconfig-ng/config.rc  source /etc/alxconfig-ng/config.rc
27    
28  # helper functions  # helper functions
29    source /usr/lib/alxconfig-ng/functions/common
30  source /usr/lib/alxconfig-ng/functions/mysqlfunctions  source /usr/lib/alxconfig-ng/functions/mysqlfunctions
31  source /usr/lib/alxconfig-ng/functions/serial_functions  source /usr/lib/alxconfig-ng/functions/serial_functions
32  source /usr/lib/alxconfig-ng/functions/config_modules  source /usr/lib/alxconfig-ng/functions/config_modules
# Line 37  source /usr/lib/alxconfig-ng/functions/c Line 36  source /usr/lib/alxconfig-ng/functions/c
36  source /usr/lib/alxconfig-ng/functions/config_x11  source /usr/lib/alxconfig-ng/functions/config_x11
37  source /usr/lib/alxconfig-ng/functions/config_auth  source /usr/lib/alxconfig-ng/functions/config_auth
38  source /usr/lib/alxconfig-ng/functions/config_ssh_auth  source /usr/lib/alxconfig-ng/functions/config_ssh_auth
39    source /usr/lib/alxconfig-ng/functions/config_versions
 # check if mysql is available  
 [ -x /usr/bin/mysql ] && MYSQL_ALX=true  
40    
41  # other needed vars  # other needed vars
42  ALX_HW_DETECT=false  ALX_HW_DETECT=false
43  ALX_FORCED_RECHECK=false  ALX_FORCED_RECHECK=false
44    ALX_RESET_SETTINGS=false
45    ALX_CONFD_NETWORKING=false
46    
47  # unset vars which may kill us  # unset vars which may kill us
48  unset ALX_SERIAL ALX_STATE  unset ALX_SERIAL ALX_STATE
# Line 53  unset ALX_SERIAL ALX_STATE Line 52  unset ALX_SERIAL ALX_STATE
52  [ ! -d /etc/alxconfig-ng/state ] && install -d /etc/alxconfig-ng/state  [ ! -d /etc/alxconfig-ng/state ] && install -d /etc/alxconfig-ng/state
53    
54    
55  update_system_settings(){  # read_cmdline ${item}
56    read_cmdline()
57    {
58     local i
59    
60     for i in $(< /proc/cmdline)
61     do
62     [[ ${i} = $1 ]] && return 0
63     done
64    
65     return 1
66    }
67    
68    update_system_settings()
69    {
70   echo -e ${COLMAGENTA}"Checking system setup ..."${COLDEFAULT}   echo -e ${COLMAGENTA}"Checking system setup ..."${COLDEFAULT}
71    
72   # get the modules settings   # get the modules settings
# Line 77  update_system_settings(){ Line 90  update_system_settings(){
90    
91   # exchange ssh rsa keys   # exchange ssh rsa keys
92   HOME=/root config_ssh_auth   HOME=/root config_ssh_auth
93    
94     # import version info
95     config_version
96  }  }
97    
98  get_system_serial(){  get_system_serial()
99    {
100     local CUR_IP CUR_MAC CUR_MTIME ALX_IFACE
101    
102   local CUR_IP CUR_MAC CUR_MTIME   if [[ ${ALX_CONFD_NETWORKING} = true ]]
103     then
104     ALX_IFACE="$(< ${SETTINGSPATH}/confd-networking)"
105     else
106     ALX_IFACE="eth0"
107     fi
108    
109   # check if serial file exists   # check if serial file exists
110   if [ -f /etc/alxconfig-ng/serial ] && [ ! -f /hardware-auto-detection ]   if [ -f /etc/alxconfig-ng/serial ] && [[ ${ALX_FORCED_RECHECK} = false ]]
111   then   then
112   source /etc/alxconfig-ng/serial   source /etc/alxconfig-ng/serial
113    
# Line 99  get_system_serial(){ Line 122  get_system_serial(){
122   exit 1   exit 1
123   fi   fi
124    
125   CUR_IP=$(/sbin/ifconfig eth0 | sed -n '/addr:/s/ [^r]*..//gp')   CUR_IP=$(ifconfig ${ALX_IFACE} | sed -n '/addr:/s/ [^r]*..//gp')
126   CUR_MAC=$(/sbin/ifconfig eth0 | grep HWaddr | cut -d ' ' -f11)   CUR_MAC=$(ifconfig ${ALX_IFACE} | grep HWaddr | cut -d ' ' -f11)
127   CUR_MTIME=$(date +%s)   CUR_MTIME=$(date +%s)
128    
129   echo -e ${COLOREDSTAR} "Trying to validate my serial ..."   echo -e ${COLOREDSTAR} "Trying to validate my serial ..."
# Line 116  get_system_serial(){ Line 139  get_system_serial(){
139   else   else
140   # abort on non valid serial   # abort on non valid serial
141   ALX_STATE="invalid serial"   ALX_STATE="invalid serial"
142   echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state   echo "ALX_STATE=\"${ALX_STATE}\"" > /etc/alxconfig-ng/state/state
143   show_invalid_serial_msg   show_invalid_serial_msg
144   exit 1   exit 1
145   fi   fi
# Line 124  get_system_serial(){ Line 147  get_system_serial(){
147   else   else
148   # run hardware detection   # run hardware detection
149   echo   echo
150   if [ -f /hardware-auto-detection ]   if [[ ${ALX_FORCED_RECHECK} = true ]]
151   then   then
152   echo -e ${COLMAGENTA}"Hardware autodetection forced by system-administrator"${COLDEFAULT}   echo -e ${COLMAGENTA}"Hardware autodetection forced by system-administrator"${COLDEFAULT}
153     # always disable CONFD_NETWORKING here
154     export ALX_CONFD_NETWORKING="false"
155   else   else
156   echo -e ${COLMAGENTA}"Preparing system for first boot"${COLDEFAULT}   echo -e ${COLMAGENTA}"Preparing system for first boot"${COLDEFAULT}
157   fi   fi
158   ALX_HW_DETECT=true   ALX_HW_DETECT=true
159   /etc/init.d/hwdetect start   hwsetup
160    
161   # set hostname to alx_default_hostname   # set hostname to alx_default_hostname
162   # use old hostname if this is a forced re-check   # use old hostname if this is a forced re-check
163   [ -f /hardware-auto-detection ] && ALX_DEFAULT_HOSTNAME="$(< /etc/hostname)"   [[ ${ALX_FORCED_RECHECK} = true ]] && ALX_DEFAULT_HOSTNAME="$(< /etc/hostname)"
164   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
165   HOSTNAME="${ALX_DEFAULT_HOSTNAME}"   HOSTNAME="${ALX_DEFAULT_HOSTNAME}"
166    
# Line 153  get_system_serial(){ Line 178  get_system_serial(){
178   exit 1   exit 1
179   fi   fi
180    
181    
182   CUR_IP=$(/sbin/ifconfig eth0 | sed -n '/addr:/s/ [^r]*..//gp')   CUR_IP=$(/sbin/ifconfig eth0 | sed -n '/addr:/s/ [^r]*..//gp')
183   CUR_MAC=$(/sbin/ifconfig eth0 | grep HWaddr | cut -d ' ' -f11)   CUR_MAC=$(/sbin/ifconfig eth0 | grep HWaddr | cut -d ' ' -f11)
184   CUR_MTIME=$(date +%s)   CUR_MTIME=$(date +%s)
185    
186   # abort now if this is a forced re-check   # abort now if this is a forced re-check
187   if [ -f /hardware-auto-detection ]   if [[ ${ALX_FORCED_RECHECK} = true ]]
188   then   then
189   # but first check the serial   # but first check the serial
190   source /etc/alxconfig-ng/serial   source /etc/alxconfig-ng/serial
# Line 182  get_system_serial(){ Line 208  get_system_serial(){
208   fi   fi
209    
210   # write current state to temp file   # write current state to temp file
211   echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state   echo "ALX_STATE=\"${ALX_STATE}\"" > /etc/alxconfig-ng/state/state
212   rm /hardware-auto-detection   [ -f /hardware-auto-detection ] && rm /hardware-auto-detection
213    
214   # now export ALX_FORCED_RECHECK=true   # now export ALX_FORCED_RECHECK=true
215   # that the setting will be updated not inserted !   # that the setting will be updated not inserted !
# Line 193  get_system_serial(){ Line 219  get_system_serial(){
219    
220   echo -e ${COLOREDSTAR} "Trying to get new serial ..."   echo -e ${COLOREDSTAR} "Trying to get new serial ..."
221    
  # request new serial  
  # ALX_REG_DATE="$(date +%F)"  
   
  # we're using the mtime now (better for validating the serial)  
 # mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \  
 # "insert into client_serials(  
 # mtime,  
 # mac  
 # )  
 # values(  
 # '${CUR_MTIME}',  
 # '${CUR_MAC}'  
 # );"  
 #  
 # # then validate and retrieve serial  
 #  
 # ### warning must be changed that only the LAST ID will be fetched,  ###  
 # ### or you get error if the computer name and date are the same     ###  
 # ### you have more than one serial number then                       ###  
 #  
 # # select highest id only (added max)  
 # ALX_SERIAL=$(mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \  
 # "select max(serial) from client_serials where mtime='${CUR_MTIME}' and mac='${CUR_MAC}'")  
   
222   # request a new serial; one command now (cause must be done in the same session)   # request a new serial; one command now (cause must be done in the same session)
223   ALX_SERIAL=$(mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   ALX_SERIAL=$(mysqldo "insert into client_serials (mtime, mac) values('${CUR_MTIME}','${CUR_MAC}');
  "insert into client_serials (mtime, mac) values('${CUR_MTIME}','${CUR_MAC}');  
224   select last_insert_id();")   select last_insert_id();")
225    
226   if [ "${ALX_SERIAL}" != NULL ]   if [[ ${ALX_SERIAL} != NULL ]]
227   then   then
228   # nice serial output   # nice serial output
229   $CURS_UP   $CURS_UP
230   $SET_WCOL   $SET_WCOL
231   echo "[ SN: ${ALX_SERIAL} ]"   echo "[ SN: ${ALX_SERIAL} ]"
232    
233   # set ALX_STATE to ok so everybody that everything was ok   # set ALX_STATE to ok so everybody knows that everything was ok
234   ALX_STATE=ok   ALX_STATE=ok
235    
236   echo "ALX_SERIAL=${ALX_SERIAL}" > /etc/alxconfig-ng/serial   echo "ALX_SERIAL=\"${ALX_SERIAL}\"" > /etc/alxconfig-ng/serial
237   echo "ALX_REG_DATE=${CUR_MTIME}" >> /etc/alxconfig-ng/serial   echo "ALX_REG_DATE=\"${CUR_MTIME}\"" >> /etc/alxconfig-ng/serial
238    
239   evaluate_retval   evaluate_retval
240   else   else
# Line 252  get_system_serial(){ Line 253  get_system_serial(){
253   fi   fi
254    
255   # write current state to temp file   # write current state to temp file
256   echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state   echo "ALX_STATE=\"${ALX_STATE}\"" > /etc/alxconfig-ng/state/state
257     echo "ALX_IFACE=\"${ALX_IFACE}\"" >> /etc/alxconfig-ng/state/state
258  }  }
259    
260    
261  check_is_configured() {  check_is_configured()
262    {
263   if [ -f /etc/alxconfig-ng/state/configured ]   if [ -f /etc/alxconfig-ng/state/configured ]
264   then   then
265   export ALX_CONFIGURED=true   export ALX_CONFIGURED=true
# Line 267  check_is_configured() { Line 270  check_is_configured() {
270    
271    
272  # imports current settings to the database resolved by the hardware detection  # imports current settings to the database resolved by the hardware detection
273  import_settings_to_db() {  import_settings_to_db()
274    {
275   # note: networking is always 'dhcp' if hw was autodetected   # note: networking is always 'dhcp' if hw was autodetected
276   # note: default_domain/hostname is set in config.rc   # note: default_domain/hostname is set in config.rc
277    
# Line 275  import_settings_to_db() { Line 279  import_settings_to_db() {
279   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
280   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
281    
282   # vars used by hwdetect   # vars used by hwsetup
283   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
284   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
285   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
286    
287   # get setting from hwdetect   # get setting from hwsetup
288   source /etc/sysconfig/hwsetup/knoppix   source /etc/conf.d/hwsetup/knoppix
289   source /etc/sysconfig/hwsetup/mouse   source /etc/conf.d/hwsetup/mouse
290    
291   echo   echo
292   echo -e ${COLMAGENTA}"Importing detected settings to database"${COLDEFAULT}   echo -e ${COLMAGENTA}"Importing detected settings to database"${COLDEFAULT}
293    
294   # network   # network
295   echo -e "      Network settings ..."   echo -e "      Network settings ..."
296   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   if [[ ${ALX_CONFD_NETWORKING} = true ]]
297   "insert into cfg_network(   then
298   hostname,   # get settings
299   serial,   #source ${rc_base}/init.d/network &> /dev/null
300   module,   for iface in $(onboot_interface_list ${network_settings}/net.*)
301   domain,   do
302   networking   [[ $(< ${SETTINGSPATH}/confd-networking) != ${iface} ]] && continue
303   )   echo "WARNING: only importing settings for interface [ ${iface} ] !"
304   values(   source ${network_settings}/net.${iface} || exit 1
305   '${ALX_DEFAULT_HOSTNAME}',   NETCARD_DRIVER="$(cat /etc/modprobe.d/net.${iface}.conf | cut -d' ' -f3)"
306   '${ALX_SERIAL}',  
307   '${NETCARD_DRIVER}',   mysqldo "insert into cfg_network(
308   '${ALX_DEFAULT_DOMAIN}',   hostname,
309   'dhcp'   serial,
310   );"   module,
311     domain,
312     networking,
313     netmask,
314     dns,
315     gateway,
316     broadcast,
317     ip,
318     forcemacto,
319     wireless_bitrate,
320     wireless_channel,
321     wireless_essid,
322     wireless_frequency,
323     wireless_mode,
324     wireless_nick,
325     wireless_auth_mode,
326     wireless_key_length,
327     wireless_key,
328     wireless_key_ascii
329     )
330     values(
331     '${ALX_DEFAULT_HOSTNAME}',
332     '${ALX_SERIAL}',
333     '${NETCARD_DRIVER}',
334     '${ALX_DEFAULT_DOMAIN}',
335     '${NETWORKING}',
336     '${NETMASK}',
337     '${NAMESERVER}',
338     '${GATEWAY}',
339     '${BROADCAST}',
340     '${IP}',
341     '${FORCE_MAC_TO}',
342     '${WIRELESS_BITRATE}',
343     '${WIRELESS_CHANNEL}',
344     '${WIRELESS_ESSID}',
345     '${WIRELESS_FREQUENCY}',
346     '${WIRELESS_MODE}',
347     '${WIRELESS_NICK}',
348     '${WIRELESS_AUTH_MODE}',
349     '${WIRELESS_KEY_LENGTH}',
350     '${WIRELESS_KEY}',
351     '${WIRELESS_KEY_ASCII}'
352     );"
353    
354     # only insert the *FIRST* iface
355     break
356     done
357     else
358     mysqldo "insert into cfg_network(
359     hostname,
360     serial,
361     module,
362     domain,
363     networking
364     )
365     values(
366     '${ALX_DEFAULT_HOSTNAME}',
367     '${ALX_SERIAL}',
368     '${NETCARD_DRIVER}',
369     '${ALX_DEFAULT_DOMAIN}',
370     'dhcp'
371     );"
372     fi
373   evaluate_retval   evaluate_retval
374    
375   # xserver   # xserver
376   echo -e "      Graphic settings ..."   echo -e "      Graphic settings ..."
377   # xserver general   # xserver general
378   ( mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   ( mysqldo "insert into cfg_graphic(
  "insert into cfg_graphic(  
379   serial,   serial,
380   module,   module,
381   resolution,   resolution,
382   depth,   depth,
383   monitorid   refresh_rate
384   )   )
385   values(   values(
386   '${ALX_SERIAL}',   '${ALX_SERIAL}',
387   '${XMODULE}',   '${XMODULE}',
388   '1024x768',   '1024x768',
389   '16',   '16',
390   '0'   '60'
391   );"; )   );"; )
392   evaluate_retval   evaluate_retval
393    
394   # input   # input
395   echo -e "      Input settings ..."   echo -e "      Input settings ..."
396   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   mysqldo "insert into cfg_input(serial,mouse) values('${ALX_SERIAL}','${XMOUSETYPE}');"
  "insert into cfg_input(serial,mouse) values('${ALX_SERIAL}','${XMOUSETYPE}');"  
397   evaluate_retval   evaluate_retval
398    
399   # auth   # auth
400   echo -e "      Authentifcation settings ..."   echo -e "      Authentification settings ..."
401   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   mysqldo "insert into client_auth(
  "insert into client_auth(  
402   serial,   serial,
403   username,   username,
404   shell,   shell,
# Line 355  import_settings_to_db() { Line 418  import_settings_to_db() {
418    
419   # exchange ssh rsa keys - the first boot needs this !   # exchange ssh rsa keys - the first boot needs this !
420   # or no reboot will work via the webadmin   # or no reboot will work via the webadmin
421   echo -e "      SSH authentifcation settings ..."   echo -e "      SSH authentification settings ..."
422   HOME=/root config_ssh_auth   HOME=/root config_ssh_auth
423   evaluate_retval   evaluate_retval
424    
425   # input   # autostart
426   echo -e "      Autostart settings ..."   echo -e "      Autostart settings ..."
427   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   mysqldo "insert into cfg_autostart(serial,session) values('${ALX_SERIAL}','');"
428   "insert into cfg_autostart(serial,session) values('${ALX_SERIAL}','');"  
429     # screensaver
430     echo -e "      Screensaver settings ..."
431     mysqldo "insert into cfg_screensaver(serial,screensaver) values('${ALX_SERIAL}','')"
432    
433     # version info
434     local alx_os
435     local alx_utils
436     alx_os="$(< /etc/mageversion)"
437     alx_utils="$(magequery -n alxconfig-ng-alx | sed 's:.*\[\ \(.*\)\ \].*:\1:')"
438     alx_utils="${alx_utils/alxconfig-ng-alx-}"
439     mysqldo "insert into client_version(serial,os,utils) values('${ALX_SERIAL}','${alx_os}','${alx_utils}')"
440    
441   evaluate_retval   evaluate_retval
442  }  }
443    
444  # imports current settings to the database resolved by the hardware detection  # imports current settings to the database resolved by the hardware detection
445  update_settings_in_db() {  update_settings_in_db()
446    {
447   # note: networking is always 'dhcp' if hw was autodetected   # note: networking is always 'dhcp' if hw was autodetected
448   # note: default_domain/hostname is set in config.rc or exported   # note: default_domain/hostname is set in config.rc or exported
449   # note: we updating only hardware settings here !   # note: we updating only hardware settings here !
# Line 376  update_settings_in_db() { Line 452  update_settings_in_db() {
452   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
453   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
454    
455   # vars used by hwdetect   # vars used by hwsetup
456   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
457   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
458   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
459    
460   # get setting from hwdetect   # get setting from hwsetup
461   source /etc/sysconfig/hwsetup/knoppix   source /etc/conf.d/hwsetup/knoppix
462   source /etc/sysconfig/hwsetup/mouse   source /etc/conf.d/hwsetup/mouse
463    
464   echo   echo
465   echo -e ${COLMAGENTA}"Updating detected settings in database"${COLDEFAULT}   echo -e ${COLMAGENTA}"Updating detected settings in database"${COLDEFAULT}
466    
467   # network   # network
468   echo -e "      Network settings ..."   echo -e "      Network settings ..."
469     if [[ ${ALX_CONFD_NETWORKING} = true ]]
470   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   then
471   "update cfg_network set   # get settings
472   hostname='${ALX_DEFAULT_HOSTNAME}',   #source ${rc_base}/init.d/network &> /dev/null
473   module='${NETCARD_DRIVER}',   for iface in $(onboot_interface_list ${network_settings}/net.*)
474   domain='${ALX_DEFAULT_DOMAIN}',   do
475   networking='dhcp'   [[ $(< ${SETTINGSPATH}/confd-networking) != ${iface} ]] && continue
476   where serial=${ALX_SERIAL};"   echo "WARNING: only importing settings for interface [ ${iface} ] !"
477     source ${network_settings}/net.${iface} || exit 1
478     NETCARD_DRIVER="$(cat /etc/modprobe.d/net.${iface}.conf | cut -d' ' -f3)"
479    
480     mysqldo "update cfg_network set
481     hostname='${ALX_DEFAULT_HOSTNAME}',
482     module='${NETCARD_DRIVER}',
483     domain='${ALX_DEFAULT_DOMAIN}',
484     networking='${NETWORKING}',
485     netmask='${NETMASK}',
486     dns='${NAMESERVER}',
487     gateway='${GATEWAY}',
488     broadcast='${BROADCAST}',
489     ip='${IP}',
490     forcemacto='${FORCE_MAC_TO}',
491     wireless_bitrate='${WIRELESS_BITRATE}',
492     wireless_channel='${WIRELESS_CHANNEL}',
493     wireless_essid='${WIRELESS_ESSID}',
494     wireless_frequency='${WIRELESS_FREQUENCY}',
495     wireless_mode='${WIRELESS_MODE}',
496     wireless_nick='${WIRELESS_NICK}',
497     wireless_auth_mode='${WIRELESS_AUTH_MODE}',
498     wireless_key_length='${WIRELESS_KEY_LENGTH}',
499     wireless_key='${WIRELESS_KEY}',
500     wireless_key_ascii='${WIRELESS_KEY_ASCII}'
501     where serial=${ALX_SERIAL};"
502    
503     # only insert the *FIRST* iface
504     break
505     done
506     else
507     mysqldo "update cfg_network set
508     hostname='${ALX_DEFAULT_HOSTNAME}',
509     module='${NETCARD_DRIVER}',
510     domain='${ALX_DEFAULT_DOMAIN}',
511     networking='dhcp'
512     where serial=${ALX_SERIAL};"
513     fi
514   evaluate_retval   evaluate_retval
515    
516   # xserver   # xserver
517   echo -e "      Graphic settings ..."   echo -e "      Graphic settings ..."
518   # xserver general   # xserver general
519   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   mysqldo "update cfg_graphic set
  "update cfg_graphic set  
520   module='${XMODULE}',   module='${XMODULE}',
521   resolution='1024x768',   resolution='1024x768',
522   depth='16',   depth='16',
523   monitorid='0'   refresh_rate='60'
524   where serial=${ALX_SERIAL};"   where serial=${ALX_SERIAL};"
525   evaluate_retval   evaluate_retval
526    
527   # input   # input
528   echo -e "      Input settings ..."   echo -e "      Input settings ..."
529   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   mysqldo "update cfg_input set mouse='${XMOUSETYPE}' where serial=${ALX_SERIAL};"
  "update cfg_input set  
  mouse='${XMOUSETYPE}'  
  where serial=${ALX_SERIAL};"  
530   evaluate_retval   evaluate_retval
531    
532     # version info
533     local alx_os
534     local alx_utils
535     alx_os="$(< /etc/mageversion)"
536     alx_utils="$(magequery -n alxconfig-ng-alx | sed 's:.*\[\ \(.*\)\ \].*:\1:')"
537     alx_utils="${alx_utils/alxconfig-ng-alx-}"
538     mysqldo "update client_version set os='${alx_os}', utils='${alx_utils}' where serial=${ALX_SERIAL};"
539  }  }
540    
541  # imports current settings to the local system resolved by the hardware detection  # imports current settings to the local system resolved by the hardware detection
542  # we only need the network settings  # we only need the network settings
543  import_settings_local(){  import_settings_local()
544    {
545   # note: networking is always 'dhcp' if hw was autodetected   # note: networking is always 'dhcp' if hw was autodetected
546   # note: default_domain/hostname is set in config.rc   # note: default_domain/hostname is set in config.rc
547    
# Line 431  import_settings_local(){ Line 549  import_settings_local(){
549   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
550   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
551    
552   # vars used by hwdetect   # vars used by hwsetup
553   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
554   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
555   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
556    
557   # get setting from hwdetect   # get setting from hwsetup
558   source /etc/sysconfig/hwsetup/knoppix   source /etc/conf.d/hwsetup/knoppix
559    
560   echo   echo
561   echo -e ${COLMAGENTA}"Importing detected settings to local system"${COLDEFAULT}   echo -e ${COLMAGENTA}"Importing detected settings to local system"${COLDEFAULT}
562    
563   [ ! -d ${SETTINGSPATH} ] && install -d ${SETTINGSPATH}   if [[ ${ALX_CONFD_NETWORKING} = false ]]
564   echo "${NETCARD_DRIVER}" > ${SETTINGSPATH}/modules   then
565   evaluate_retval   # set an device alias for modprobe.conf
566     [ ! -d /etc/modprobe.d ] && install -d /etc/modprobe.d
567     echo "alias eth0 ${NETCARD_DRIVER}" > /etc/modprobe.d/net.eth0.conf
568    
569     # regenerate modprobe.conf
570     [ -x $(which modules-update) ] && modules-update || echo "cannot regen modprobe.conf"
571     evaluate_retval
572     fi
573    
574   # set system state to 'already configured'   # set system state to 'already configured'
575   touch /etc/alxconfig-ng/state/configured   touch /etc/alxconfig-ng/state/configured
576    
577     # install slim desktopmanager configuration
578     config_display_manager
579    
580   # if only an recheck was forced than abort now   # if only an recheck was forced than abort now
581   [[ ${ALX_FORCED_RECHECK} = true ]] && return 0   [[ ${ALX_FORCED_RECHECK} = true ]] && return 0
582    
# Line 459  import_settings_local(){ Line 587  import_settings_local(){
587   # now generate fluxbox config files   # now generate fluxbox config files
588    
589   # fluxbox main config   # fluxbox main config
590   cat ${ALX_SKELETONS}/fluxbox/init \   cat ${ALX_SKELETONS}/fluxbox/init > ${ALX_UNPRIV_HOME}/.fluxbox/init
591   > ${ALX_UNPRIV_HOME}/.fluxbox/init  
592     # fluxbox autostart
593     cat ${ALX_SKELETONS}/fluxbox/apps > ${ALX_UNPRIV_HOME}/.fluxbox/apps
594    
595   # fluxbox menu header   # fluxbox menu header
596   cat ${ALX_SKELETONS}/fluxbox/menu.header \   cat ${ALX_SKELETONS}/fluxbox/menu.header > ${ALX_UNPRIV_HOME}/.fluxbox/menu
  > ${ALX_UNPRIV_HOME}/.fluxbox/menu  
597    
598   # now fix it with proper messages :P   # now fix it with proper messages :P
599   local ver="$(< /etc/mageversion)"   local ver="$(< /etc/mageversion)"
600   sed -i "s:@CHANGEME@:alx-${ver}  #${ALX_SERIAL}:g" \   sed -i "s:@CHANGEME@:alx-${ver}  #${ALX_SERIAL}:g" ${ALX_UNPRIV_HOME}/.fluxbox/menu
  ${ALX_UNPRIV_HOME}/.fluxbox/menu  
601    
602   # add a newline (maybe there is no crlf in the header)   # add a newline (maybe there is no crlf in the header)
603   echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu   echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
604    
605   # fluxbox menu footer   # fluxbox menu footer
606   cat ${ALX_SKELETONS}/fluxbox/menu.footer \   cat ${ALX_SKELETONS}/fluxbox/menu.footer >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
  >> ${ALX_UNPRIV_HOME}/.fluxbox/menu  
607    
608   # add a newline (maybe there is no crlf in the footer)   # add a newline (maybe there is no crlf in the footer)
609   echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu   echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
# Line 516  import_settings_local(){ Line 643  import_settings_local(){
643   --icon-width "1" \   --icon-width "1" \
644   --icon-height "1"   --icon-height "1"
645    
646     # create a xinitrc
647     echo "exec startfluxbox" > ${ALX_UNPRIV_HOME}/.xinitrc
648    
649   # set correct permissions   # set correct permissions
650   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}
651   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox
652   chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox   chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox
653   chmod 0755 ${ALX_UNPRIV_HOME}/.xtdesktop   chmod 0755 ${ALX_UNPRIV_HOME}/.xtdesktop
654   chmod 0644 ${ALX_UNPRIV_HOME}/.xtdeskrc   chmod 0644 ${ALX_UNPRIV_HOME}/.xtdeskrc
655     chmod 0644 ${ALX_UNPRIV_HOME}/.xinitrc
  # default passwords are bad  
  #usermod -p $(perl -e "printf(crypt('foobar','AD'))") root  
  #usermod -p $(perl -e "printf(crypt('foobar','AD'))") ${ALX_UNPRIV_USER}  
  #smbpasswd -a root foobar  
656  }  }
657    
658  # start|stop  # start|stop
659  preliminary_network(){  preliminary_network()
660    {
661   local module   local module
662    
663   if [ -f /etc/alxconfig-ng/state/configured ]   if [ -f /etc/alxconfig-ng/state/configured ]
664   then   then
665   # get module name   # compat for old clients
666   module=$(cat ${SETTINGSPATH}/modules)   if [ -f ${SETTINGSPATH}/modules ]
667   modprobe ${module}   then
668     # get module name
669     module=$(cat ${SETTINGSPATH}/modules)
670     modprobe ${module}
671     fi
672    
673   else   else
674   # vars used by hwdetect   # vars used by hwsetup
675   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
676   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
677    
678   # get setting from hwdetect   # get setting from hwsetup
679   source /etc/sysconfig/hwsetup/knoppix   source /etc/conf.d/hwsetup/knoppix
680   modprobe ${NETCARD_DRIVER}   modprobe ${NETCARD_DRIVER}
681   fi   fi
682    
# Line 553  preliminary_network(){ Line 685  preliminary_network(){
685   # keeping like always safe:   # keeping like always safe:
686   # no network should be startet here,   # no network should be startet here,
687   # so we can delete all pid files if one exists   # so we can delete all pid files if one exists
688   if ps -A|grep dhcpcd > /dev/null   if [[ ! -z $(pidof udhcpc) ]]
689   then   then
690   echo -e ${COLMAGENTA}"Forcing network down"${COLDEFAULT}   echo -e ${COLMAGENTA}"Forcing network down"${COLDEFAULT}
691   dhcpcd -k   killall udhcpc &> /dev/null
692   sleep 1   sleep 1
  else  
  rm -f /var/run/dhcpcd-eth?.pid  
693   fi   fi
694     [[ ${ALX_CONFD_NETWORKING} = true ]] && ${rc_base}/init.d/network stop
695    
696   echo -e ${COLMAGENTA}"Starting preliminary network ... "${COLDEFAULT}   echo -e ${COLMAGENTA}"Starting preliminary networking ... "${COLDEFAULT}
  # -t 10 timeout of 10 secs  
  dhcpcd -t 10 &> /dev/null  
   
  # aka_fix ########################################  
  #ifconfig eth0 128.20.222.222 netmask 255.255.0.0 up  
  #route del default gw 128.20.50.13 &> /dev/null  
  #route add default gw 128.20.50.21 &> /dev/null  
  #echo "nameserver 128.20.50.21" > /etc/resolv.conf  
  ##################################################  
697    
698   evaluate_retval   # start network configured from /etc/conf.d
699     if [[ ${ALX_CONFD_NETWORKING} = true ]]
700     then
701     ${rc_base}/init.d/network start
702     else
703     echo -e ${COLOREDSTAR}"Starting default dhcp based networking ... "${COLDEFAULT}
704     # -t 10 timeout of 10 secs
705     udhcpc -t 10 &> /dev/null
706     evaluate_retval
707     fi
708   ;;   ;;
709    
710   stop)   stop)
711   echo -e ${COLMAGENTA}"Stopping preliminary network ... "${COLDEFAULT}   echo -e ${COLMAGENTA}"Stopping preliminary networking ... "${COLDEFAULT}
712   ifconfig eth0 down   if [[ ${ALX_CONFD_NETWORKING} = true ]]
  if ps -A|grep dhcpcd > /dev/null  
713   then   then
714   dhcpcd -z  &> /dev/null   ${rc_base}/init.d/network stop
715     else
716     echo -e ${COLOREDSTAR}"Stopping default dhcp based networking ... "${COLDEFAULT}
717     ifconfig eth0 down
718     fi
719     if [[ ! -z $(pidof udhcpc) ]]
720     then
721     killall udhcpc  &> /dev/null
722     sleep 1
723   fi   fi
724   evaluate_retval   evaluate_retval
725   ;;   ;;
# Line 592  preliminary_network(){ Line 730  preliminary_network(){
730   esac   esac
731  }  }
732    
733    reset_system_settings()
734    {
735     # force load of de kbdkeys
736     loadkeys -q de
737     echo
738     echo -en ${COLRED}
739     echo -n "*** Warning: you are about to reset *all* local settings on this system!"
740     echo -e ${COLDEFAULT}
741     echo "*** Do you really want to continue ?"
742     echo -n "*** Enter 'yes' to continue, anything else to abort: "
743     read kbinsert
744     if [[ ${kbinsert} = yes ]]
745     then
746     echo -en ${COLRED}
747     echo -n "*** OK, you really want it ... killing all settings: "
748     for i in 3 2 1 now
749     do
750     echo -n " ${i}"
751     sleep 1
752     done
753     echo -e ${COLDEFAULT}
754    
755     ## reset all settings:
756     rm -rf ${SETTINGSPATH}/*
757     rm -f /etc/alxconfig-ng/serial
758     rm -rf /etc/alxconfig-ng/state
759    
760     # clear all printers & net-shares
761     :> /etc/printcap
762    
763     # remove lprng
764     rc-config del lprng &> /dev/null
765    
766     # remove all user settings
767     [ -d ${ALX_UNPRIV_HOME} ] && rm -rf ${ALX_UNPRIV_HOME}
768    
769     # remove all ica-sessions
770     find ${ALX_ICA_SESSIONS} -type f -name '*.ica' | xargs rm
771    
772     # remove all old nics and modules configs
773     find /etc/conf.d -type f -name 'net.*' | xargs rm
774     find /etc/modprobe.d -type f -name 'net.*' | xargs rm
775    
776     # restore default networking
777     cat ${ALX_SKELETONS}/net/net.eth0 > /etc/conf.d/net.eth0
778    
779     echo "I am done now, press [Enter] to reboot system ..."
780     else
781     echo "Aborted, press [Enter] to reboot system ..."
782     fi
783     read
784     reboot
785    }
786    
787    onboot_interface_list()
788    {
789     local file
790     local devices
791     local iface
792    
793     # get list of all devices
794     for file in $@
795     do
796     if [[ $(read_value ONBOOT ${file}) = yes ]]
797     then
798     iface="$(basename ${file} | sed s/net.//)"
799     # exclude backup files
800     case "${iface}" in
801     *~) ;;
802     *) devices="${devices} $(basename ${file} | sed s/net.//)" ;;
803     esac
804     fi
805     done
806    
807     echo "${devices}"
808    }
809    
810    # read values from net.* files
811    read_value()
812    {
813     local var="$1"
814     local file="$2"
815     local value
816    
817     # local all possible vars
818     # global
819     local ONBOOT
820     local NETWORKING
821    
822     # static
823     local IP
824     local NETMASK
825     local BROADCAST
826     local NETWORKING
827     local FORCE_MAC_TO
828    
829     # dhcp
830     local DHCP_PROG
831     local DHCP_START
832     local DHCP_STOP
833    
834     # default gw
835     local GATEWAY
836     local GATEWAY_IF
837    
838     # wireless extensions
839     local WIRELESS_AP
840     local WIRELESS_AUTH_MODE
841     local WIRELESS_BITRATE
842     local WIRELESS_CHANNEL
843     local WIRELESS_DEFAULT_KEY
844     local WIRELESS_ESSID
845     local WIRELESS_FREQUENCY
846     local WIRELESS_KEY
847     local WIRELESS_KEY_ASCII
848     local WIRELESS_KEY_0
849     local WIRELESS_KEY_1
850     local WIRELESS_KEY_2
851     local WIRELESS_KEY_3
852     local WIRELESS_KEY_LENGTH
853     local WIRELESS_MODE
854     local WIRELESS_NICK
855     local WIRELESS_NWID
856     local WIRELESS_POWER
857    
858     source ${file}
859     eval value=\$$(echo ${var})
860     echo "${value}"
861    }
862    
863  case $1 in  case $1 in
864   start)   start)
865     # check for global overrides
866     [ -f ${SETTINGSPATH}/confd-networking ] && ALX_CONFD_NETWORKING=true
867     [ -f /hardware-auto-detection ] && ALX_FORCED_RECHECK=true
868     read_cmdline hardware-auto-detection && ALX_FORCED_RECHECK=true
869     read_cmdline alx-reset-settings && ALX_RESET_SETTINGS=true
870    
871     # kill all settings if requested
872     if [[ ${ALX_RESET_SETTINGS} = true ]]
873     then
874     reset_system_settings
875     fi
876    
877   # retrieve or validate current serial   # retrieve or validate current serial
878   get_system_serial   get_system_serial
879   if [[ ${ALX_HW_DETECT} = true ]]   if [[ ${ALX_HW_DETECT} = true ]]
# Line 614  case $1 in Line 894  case $1 in
894    
895   # now setup system configuration   # now setup system configuration
896   # alx_setup_or_whatever_it_will_be_called()   # alx_setup_or_whatever_it_will_be_called()
897   [ "${ALX_HW_DETECT}" == "false" ] && update_system_settings   [[ ${ALX_HW_DETECT} = false ]] && update_system_settings
898    
899   # stop at last the preliminary networking (dhcp)   # stop at last the preliminary networking (dhcp)
900   preliminary_network stop   preliminary_network stop
# Line 626  case $1 in Line 906  case $1 in
906   [ -f /etc/alxconfig-ng/state/state ] && rm /etc/alxconfig-ng/state/state   [ -f /etc/alxconfig-ng/state/state ] && rm /etc/alxconfig-ng/state/state
907   sleep 0.1   sleep 0.1
908   ;;   ;;
909    
910   *)   *)
911   echo "Usage: $0 {start|stop} ..."   echo "Usage: $0 {start|stop} ..."
912   ;;   ;;

Legend:
Removed from v.314  
changed lines
  Added in v.2122