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 265 by niro, Mon Apr 18 23:04:43 2005 UTC alx-src/branches/alxconf_20060908/alxconfig-ng/init.d/alxsettings revision 543 by niro, Wed Feb 4 19:51:39 2009 UTC
# Line 11  Line 11 
11  #%before:  #%before:
12  #%after:  #%after:
13    
14  # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/init.d/alxsettings,v 1.13 2005-04-18 23:04:43 niro Exp $  # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/init.d/alxsettings,v 1.27 2005-10-11 12:10:15 niro Exp $
15    
16  # 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
17  # if not it runs the autoconfiguration script  # if not it runs the autoconfiguration script
# Line 24  Line 24 
24  source /etc/sysconfig/rc  source /etc/sysconfig/rc
25  source $rc_functions  source $rc_functions
26    
27  #mysql settings  # mysql settings
28  source /etc/alxconfig-ng/config.rc  source /etc/alxconfig-ng/config.rc
29    
30    # helper functions
31  source /usr/lib/alxconfig-ng/functions/mysqlfunctions  source /usr/lib/alxconfig-ng/functions/mysqlfunctions
32  source /usr/lib/alxconfig-ng/functions/serial_functions  source /usr/lib/alxconfig-ng/functions/serial_functions
33  source /usr/lib/alxconfig-ng/functions/config_modules  source /usr/lib/alxconfig-ng/functions/config_modules
# Line 36  source /usr/lib/alxconfig-ng/functions/c Line 38  source /usr/lib/alxconfig-ng/functions/c
38  source /usr/lib/alxconfig-ng/functions/config_auth  source /usr/lib/alxconfig-ng/functions/config_auth
39  source /usr/lib/alxconfig-ng/functions/config_ssh_auth  source /usr/lib/alxconfig-ng/functions/config_ssh_auth
40    
41  #check if mysql is available  # check if mysql is available
42  [ -x /usr/bin/mysql ] && MYSQL_ALX=true  [ -x /usr/bin/mysql ] && MYSQL_ALX=true
43    
44  #other needed vars  # other needed vars
45  ALX_HW_DETECT=false  ALX_HW_DETECT=false
46    ALX_FORCED_RECHECK=false
47    ALX_RESET_SETTINGS=false
48    ALX_CONFD_NETWORKING=false
49    
50  #unset vars which may kill us  # unset vars which may kill us
51  unset ALX_SERIAL ALX_STATE  unset ALX_SERIAL ALX_STATE
52    
53    
54  #setup needed directories  # setup needed directories
55  [ ! -d /etc/alxconfig-ng/state ] && install -d /etc/alxconfig-ng/state  [ ! -d /etc/alxconfig-ng/state ] && install -d /etc/alxconfig-ng/state
56    
57    
58  update_system_settings(){  # read_cmdline ${item}
59    read_cmdline()
60    {
61     local i
62    
63     for i in $(< /proc/cmdline)
64     do
65     [[ ${i} = $1 ]] && return 0
66     done
67    
68     return 1
69    }
70    
71    update_system_settings()
72    {
73   echo -e ${COLMAGENTA}"Checking system setup ..."${COLDEFAULT}   echo -e ${COLMAGENTA}"Checking system setup ..."${COLDEFAULT}
74    
75   # get the modules settings   # get the modules settings
# Line 76  update_system_settings(){ Line 95  update_system_settings(){
95   HOME=/root config_ssh_auth   HOME=/root config_ssh_auth
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 ]   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    
114   #start preliminary networking (dhcp)   # start preliminary networking (dhcp)
115   preliminary_network start   preliminary_network start
116    
117   CUR_IP=$(/sbin/ifconfig eth0 | sed -n '/addr:/s/ [^r]*..//gp')   # check if mysql server is reachable
118   CUR_MAC=$(/sbin/ifconfig eth0 | grep HWaddr | cut -d ' ' -f11)   # if not abort this script
119     if ! reach_mysql_server
120     then
121     preliminary_network stop
122     exit 1
123     fi
124    
125     CUR_IP=$(/sbin/ifconfig ${ALX_IFACE} | sed -n '/addr:/s/ [^r]*..//gp')
126     CUR_MAC=$(/sbin/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 ..."
130    
131   #nice serial output   # nice serial output
132   $CURS_UP   $CURS_UP
133   $SET_WCOL   $SET_WCOL
134   echo "[ SN: ${ALX_SERIAL} ]"   echo "[ SN: ${ALX_SERIAL} ]"
# Line 103  get_system_serial(){ Line 137  get_system_serial(){
137   then   then
138   ALX_STATE="ok"   ALX_STATE="ok"
139   else   else
140     # 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
143     show_invalid_serial_msg
144     exit 1
145   fi   fi
146    
147   else   else
148   #run hardware detection   # run hardware detection
149   echo   echo
150   echo -e ${COLMAGENTA}"Preparing system for first boot"${COLDEFAULT}   if [[ ${ALX_FORCED_RECHECK} = true ]]
151     then
152     echo -e ${COLMAGENTA}"Hardware autodetection forced by system-administrator"${COLDEFAULT}
153     else
154     echo -e ${COLMAGENTA}"Preparing system for first boot"${COLDEFAULT}
155     fi
156   ALX_HW_DETECT=true   ALX_HW_DETECT=true
157   /etc/init.d/hwdetect start   /etc/init.d/hwdetect start
158    
159   #set hostname to alx_default_hostname   # set hostname to alx_default_hostname
160     # use old hostname if this is a forced re-check
161     [[ ${ALX_FORCED_RECHECK} = true ]] && ALX_DEFAULT_HOSTNAME="$(< /etc/hostname)"
162   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
163   HOSTNAME="${ALX_DEFAULT_HOSTNAME}"   HOSTNAME="${ALX_DEFAULT_HOSTNAME}"
164    
165   #update the hostname on the system for sure   # update the hostname on the system for sure
166   echo "${HOSTNAME}" > /etc/hostname   echo "${HOSTNAME}" > /etc/hostname
167    
168   #start preliminary networking (dhcp)   # start preliminary networking (dhcp)
169   preliminary_network start   preliminary_network start
170    
171     # check if mysql server is reachable
172     # if not abort this script
173     if ! reach_mysql_server
174     then
175     preliminary_network stop
176     exit 1
177     fi
178    
179   CUR_IP=$(/sbin/ifconfig eth0 | sed -n '/addr:/s/ [^r]*..//gp')   CUR_IP=$(/sbin/ifconfig eth0 | sed -n '/addr:/s/ [^r]*..//gp')
180   CUR_MAC=$(/sbin/ifconfig eth0 | grep HWaddr | cut -d ' ' -f11)   CUR_MAC=$(/sbin/ifconfig eth0 | grep HWaddr | cut -d ' ' -f11)
181   CUR_MTIME=$(date +%s)   CUR_MTIME=$(date +%s)
182    
183   echo -e ${COLOREDSTAR} "Trying to get new serial ..."   # abort now if this is a forced re-check
184     if [[ ${ALX_FORCED_RECHECK} = true ]]
185     then
186     # but first check the serial
187     source /etc/alxconfig-ng/serial
188    
189   #request new serial   echo -e ${COLOREDSTAR} "Trying to validate my serial ..."
  #ALX_REG_DATE="$(date +%F)"  
190    
191   #we're using the mtime now (better for vaildating the serial)   # nice serial output
192   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   $CURS_UP
193   "insert into client_serials(   $SET_WCOL
194   mtime,   echo "[ SN: ${ALX_SERIAL} ]"
195   mac  
196   )   if validate_serial "${ALX_SERIAL}" "${ALX_REG_DATE}" "${CUR_MAC}"
197   values(   then
198   '${CUR_MTIME}',   ALX_STATE="ok"
199   '${CUR_MAC}'   else
200   );"   # abort on non valid serial
201     ALX_STATE="invalid serial"
202     echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state
203     show_invalid_serial_msg
204     exit 1
205     fi
206    
207   #then validate and retrieve serial   # write current state to temp file
208     echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state
209     [ -f /hardware-auto-detection ] && rm /hardware-auto-detection
210    
211     # now export ALX_FORCED_RECHECK=true
212     # that the setting will be updated not inserted !
213     export ALX_FORCED_RECHECK=true
214     return 0
215     fi
216    
217   ### warning must be changed that only the LAST ID will be fetched,  ###   echo -e ${COLOREDSTAR} "Trying to get new serial ..."
  ### or you get error if the computer name and date are the same     ###  
  ### you have more than one serial number then                       ###  
218    
219   #select highest id only (added max)   # request a new serial; one command now (cause must be done in the same session)
220   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}');
221   "select max(serial) from client_serials where mtime='${CUR_MTIME}' and mac='${CUR_MAC}'")   select last_insert_id();")
222    
223   if [ "${ALX_SERIAL}" != NULL ]   if [[ ${ALX_SERIAL} != NULL ]]
224   then   then
225   #nice serial output   # nice serial output
226   $CURS_UP   $CURS_UP
227   $SET_WCOL   $SET_WCOL
228   echo "[ SN: ${ALX_SERIAL} ]"   echo "[ SN: ${ALX_SERIAL} ]"
229    
230   #set ALX_STATE to ok so everybody that everything was ok   # set ALX_STATE to ok so everybody knows that everything was ok
231   ALX_STATE=ok   ALX_STATE=ok
232    
233   echo "ALX_SERIAL=${ALX_SERIAL}" > /etc/alxconfig-ng/serial   echo "ALX_SERIAL=${ALX_SERIAL}" > /etc/alxconfig-ng/serial
# Line 168  get_system_serial(){ Line 235  get_system_serial(){
235    
236   evaluate_retval   evaluate_retval
237   else   else
238   #print false (works only if this is the first statement here)   # print false (works only if this is the first statement here)
239   evaluate_retval   evaluate_retval
240    
241   #set ALX_STATE to error so everybody sees there was an error   # set ALX_STATE to error so everybody sees there was an error
242   ALX_STATE=error   ALX_STATE=error
243    
244   #show an error that no new serial was found   # show an error that no new serial was found
245   #nice serial output   # nice serial output
246   $CURS_UP   $CURS_UP
247   $SET_WCOL   $SET_WCOL
248   echo -e "[ SN: ${COLRED}None, 0${COLDEFAULT} ]"   echo -e "[ SN: ${COLRED}None, 0${COLDEFAULT} ]"
249   fi   fi
250   fi   fi
251    
252   #write current state to temp file   # write current state to temp file
253   echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state   echo "ALX_STATE=${ALX_STATE}" > /etc/alxconfig-ng/state/state
254     echo "ALX_IFACE=${ALX_IFACE}" >> /etc/alxconfig-ng/state/state
255  }  }
256    
257    
258  check_is_configured() {  check_is_configured()
259    {
260   if [ -f /etc/alxconfig-ng/state/configured ]   if [ -f /etc/alxconfig-ng/state/configured ]
261   then   then
262   export ALX_CONFIGURED=true   export ALX_CONFIGURED=true
# Line 198  check_is_configured() { Line 267  check_is_configured() {
267    
268    
269  # imports current settings to the database resolved by the hardware detection  # imports current settings to the database resolved by the hardware detection
270  import_settings_to_db() {  import_settings_to_db()
271   #note: networking is always 'dhcp' if hw was autodetected  {
272   #note: default_domain/hostname is set in config.rc   # note: networking is always 'dhcp' if hw was autodetected
273     # note: default_domain/hostname is set in config.rc
274    
275   #to be safe, we do some sanity checks   # to be safe, we do some sanity checks
276   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
277   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
278    
279   #vars used by hwdetect   # vars used by hwdetect
280   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
281   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
282   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
283    
284   #get setting from hwdetect   # get setting from hwdetect
285   source /etc/sysconfig/hwsetup/knoppix   source /etc/sysconfig/hwsetup/knoppix
286   source /etc/sysconfig/hwsetup/mouse   source /etc/sysconfig/hwsetup/mouse
287    
288   echo   echo
289   echo -e ${COLMAGENTA}"Importing detected settings to database"${COLDEFAULT}   echo -e ${COLMAGENTA}"Importing detected settings to database"${COLDEFAULT}
290    
291   #network   # network
292   echo -e "      Network settings ..."   echo -e "      Network settings ..."
293   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   if [[ ${ALX_CONFD_NETWORKING} = true ]]
294   "insert into cfg_network(   then
295   hostname,   # get settings
296   serial,   #source ${rc_base}/init.d/network &> /dev/null
297   module,   for iface in $(onboot_interface_list ${network_settings}/net.*)
298   domain,   do
299   networking   [[ $(< ${SETTINGSPATH}/confd-networking) != ${iface} ]] && continue
300   )   echo "WARNING: only importing settings for interface [ ${iface} ] !"
301   values(   source ${network_settings}/net.${iface} || exit 1
302   '${ALX_DEFAULT_HOSTNAME}',   NETCARD_DRIVER="$(cat /etc/modules.d/net.${iface} | cut -d' ' -f3)"
303   '${ALX_SERIAL}',  
304   '${NETCARD_DRIVER}',   mysqldo "insert into cfg_network(
305   '${ALX_DEFAULT_DOMAIN}',   hostname,
306   'dhcp'   serial,
307   );"   module,
308     domain,
309     networking,
310     netmask,
311     dns,
312     gateway,
313     broadcast,
314     ip,
315     forcemacto,
316     wireless_bitrate,
317     wireless_channel,
318     wireless_essid,
319     wireless_frequency,
320     wireless_mode,
321     wireless_nick,
322     wireless_auth_mode,
323     wireless_key_length,
324     wireless_key,
325     wireless_key_ascii
326     )
327     values(
328     '${ALX_DEFAULT_HOSTNAME}',
329     '${ALX_SERIAL}',
330     '${NETCARD_DRIVER}',
331     '${ALX_DEFAULT_DOMAIN}',
332     '${NETWORKING}',
333     '${NETMASK}',
334     '${NAMESERVER}',
335     '${GATEWAY}',
336     '${BROADCAST}',
337     '${IP}',
338     '${FORCE_MAC_TO}',
339     '${WIRELESS_BITRATE}',
340     '${WIRELESS_CHANNEL}',
341     '${WIRELESS_ESSID}',
342     '${WIRELESS_FREQUENCY}',
343     '${WIRELESS_MODE}',
344     '${WIRELESS_NICK}',
345     '${WIRELESS_AUTH_MODE}',
346     '${WIRELESS_KEY_LENGTH}',
347     '${WIRELESS_KEY}',
348     '${WIRELESS_KEY_ASCII}'
349     );"
350    
351     # only insert the *FIRST* iface
352     break
353     done
354     else
355     mysqldo "insert into cfg_network(
356     hostname,
357     serial,
358     module,
359     domain,
360     networking
361     )
362     values(
363     '${ALX_DEFAULT_HOSTNAME}',
364     '${ALX_SERIAL}',
365     '${NETCARD_DRIVER}',
366     '${ALX_DEFAULT_DOMAIN}',
367     'dhcp'
368     );"
369     fi
370   evaluate_retval   evaluate_retval
371    
372   #xserver   # xserver
373   echo -e "      Graphic settings ..."   echo -e "      Graphic settings ..."
374   #xserver general   # xserver general
375   ( mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   ( mysqldo "insert into cfg_graphic(
  "insert into cfg_graphic(  
376   serial,   serial,
377   module,   module,
378   resolution,   resolution,
# Line 259  import_settings_to_db() { Line 390  import_settings_to_db() {
390    
391   # input   # input
392   echo -e "      Input settings ..."   echo -e "      Input settings ..."
393   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}');"  
394   evaluate_retval   evaluate_retval
395    
396   # auth   # auth
397   echo -e "      Authentifcation settings ..."   echo -e "      Authentification settings ..."
398   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   mysqldo "insert into client_auth(
  "insert into client_auth(  
399   serial,   serial,
400   username,   username,
401   shell,   shell,
# Line 286  import_settings_to_db() { Line 415  import_settings_to_db() {
415    
416   # exchange ssh rsa keys - the first boot needs this !   # exchange ssh rsa keys - the first boot needs this !
417   # or no reboot will work via the webadmin   # or no reboot will work via the webadmin
418   echo -e "      SSH authentifcation settings ..."   echo -e "      SSH authentification settings ..."
419   HOME=/root config_ssh_auth   HOME=/root config_ssh_auth
420   evaluate_retval   evaluate_retval
421    
422   # input   # autostart
423   echo -e "      Autostart settings ..."   echo -e "      Autostart settings ..."
424   mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \   mysqldo "insert into cfg_autostart(serial,session) values('${ALX_SERIAL}','');"
425   "insert into cfg_autostart(serial,session) values('${ALX_SERIAL}','');"  
426     # screensaver
427     echo -e "      Screensaver settings ..."
428     mysqldo "insert into cfg_screensaver(serial,screensaver) values('${ALX_SERIAL}','')"
429    
430     evaluate_retval
431    }
432    
433    # imports current settings to the database resolved by the hardware detection
434    update_settings_in_db()
435    {
436     # note: networking is always 'dhcp' if hw was autodetected
437     # note: default_domain/hostname is set in config.rc or exported
438     # note: we updating only hardware settings here !
439    
440     # to be safe, we do some sanity checks
441     [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
442     [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
443    
444     # vars used by hwdetect
445     local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
446     local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
447     local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
448    
449     # get setting from hwdetect
450     source /etc/sysconfig/hwsetup/knoppix
451     source /etc/sysconfig/hwsetup/mouse
452    
453     echo
454     echo -e ${COLMAGENTA}"Updating detected settings in database"${COLDEFAULT}
455    
456     # network
457     echo -e "      Network settings ..."
458     if [[ ${ALX_CONFD_NETWORKING} = true ]]
459     then
460     # get settings
461     #source ${rc_base}/init.d/network &> /dev/null
462     for iface in $(onboot_interface_list ${network_settings}/net.*)
463     do
464     [[ $(< ${SETTINGSPATH}/confd-networking) != ${iface} ]] && continue
465     echo "WARNING: only importing settings for interface [ ${iface} ] !"
466     source ${network_settings}/net.${iface} || exit 1
467     NETCARD_DRIVER="$(cat /etc/modules.d/net.${iface} | cut -d' ' -f3)"
468    
469     mysqldo "update cfg_network set
470     hostname='${ALX_DEFAULT_HOSTNAME}',
471     module='${NETCARD_DRIVER}',
472     domain='${ALX_DEFAULT_DOMAIN}',
473     networking='${NETWORKING}',
474     netmask='${NETMASK}',
475     dns='${NAMESERVER}',
476     gateway='${GATEWAY}',
477     broadcast='${BROADCAST}',
478     ip='${IP}',
479     forcemacto='${FORCE_MAC_TO}',
480     wireless_bitrate='${WIRELESS_BITRATE}',
481     wireless_channel='${WIRELESS_CHANNEL}',
482     wireless_essid='${WIRELESS_ESSID}',
483     wireless_frequency='${WIRELESS_FREQUENCY}',
484     wireless_mode='${WIRELESS_MODE}',
485     wireless_nick='${WIRELESS_NICK}',
486     wireless_auth_mode='${WIRELESS_AUTH_MODE}',
487     wireless_key_length='${WIRELESS_KEY_LENGTH}',
488     wireless_key='${WIRELESS_KEY}',
489     wireless_key_ascii='${WIRELESS_KEY_ASCII}'
490     where serial=${ALX_SERIAL};"
491    
492     # only insert the *FIRST* iface
493     break
494     done
495     else
496     mysqldo "update cfg_network set
497     hostname='${ALX_DEFAULT_HOSTNAME}',
498     module='${NETCARD_DRIVER}',
499     domain='${ALX_DEFAULT_DOMAIN}',
500     networking='dhcp'
501     where serial=${ALX_SERIAL};"
502     fi
503     evaluate_retval
504    
505     # xserver
506     echo -e "      Graphic settings ..."
507     # xserver general
508     mysqldo "update cfg_graphic set
509     module='${XMODULE}',
510     resolution='1024x768',
511     depth='16',
512     monitorid='0'
513     where serial=${ALX_SERIAL};"
514     evaluate_retval
515    
516     # input
517     echo -e "      Input settings ..."
518     mysqldo "update cfg_input set mouse='${XMOUSETYPE}' where serial=${ALX_SERIAL};"
519   evaluate_retval   evaluate_retval
520  }  }
521    
522  # imports current settings to the local system resolved by the hardware detection  # imports current settings to the local system resolved by the hardware detection
523  # we only need the network settings  # we only need the network settings
524  import_settings_local(){  import_settings_local()
525   #note: networking is always 'dhcp' if hw was autodetected  {
526   #note: default_domain/hostname is set in config.rc   # note: networking is always 'dhcp' if hw was autodetected
527     # note: default_domain/hostname is set in config.rc
528    
529   #to be safe, we do some sanity checks   # to be safe, we do some sanity checks
530   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain   [ -z "${ALX_DEFAULT_DOMAIN}" ] && ALX_DEFAULT_DOMAIN=localdomain
531   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx   [ -z "${ALX_DEFAULT_HOSTNAME}" ] && ALX_DEFAULT_HOSTNAME=magellan-alx
532    
533   #vars used by hwdetect   # vars used by hwdetect
534   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
535   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
536   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE   local MOUSETYPE XMOUSETYPE FULLNAME DEVICE
537    
538   #get setting from hwdetect   # get setting from hwdetect
539   source /etc/sysconfig/hwsetup/knoppix   source /etc/sysconfig/hwsetup/knoppix
540    
541   echo   echo
542   echo -e ${COLMAGENTA}"Importing detected settings to local system"${COLDEFAULT}   echo -e ${COLMAGENTA}"Importing detected settings to local system"${COLDEFAULT}
543    
544   [ ! -d ${SETTINGSPATH} ] && install -d ${SETTINGSPATH}   if [[ ${ALX_CONFD_NETWORKING} = false ]]
545   echo "${NETCARD_DRIVER}" > ${SETTINGSPATH}/modules   then
546   evaluate_retval   #[ ! -d ${SETTINGSPATH} ] && install -d ${SETTINGSPATH}
547     #echo "${NETCARD_DRIVER}" > ${SETTINGSPATH}/modules
548    
549     # set an device alias for modprobe.conf
550     [ ! -d /etc/modules.d ] && install -d /etc/modules.d
551     echo "alias eth0 ${NETCARD_DRIVER}" > /etc/modules.d/net.eth0
552    
553     # regenerate modprobe.conf
554     [ -x $(which modules-update) ] && modules-update || echo "cannot regen modprobe.conf"
555     evaluate_retval
556     fi
557    
558   #set system state to 'already configured'   # set system state to 'already configured'
559   touch /etc/alxconfig-ng/state/configured   touch /etc/alxconfig-ng/state/configured
560    
561   # default passwords are bad   # if only an recheck was forced than abort now
562   #usermod -p $(perl -e "printf(crypt('foobar','AD'))") root   [[ ${ALX_FORCED_RECHECK} = true ]] && return 0
563   #usermod -p $(perl -e "printf(crypt('foobar','AD'))") ${ALX_UNPRIV_USER}  
564   #smbpasswd -a root foobar   # create a fresh fluxbox directory
565     [ -d ${ALX_UNPRIV_HOME}/.fluxbox ] && rm -rf ${ALX_UNPRIV_HOME}/.fluxbox
566     install -d ${ALX_UNPRIV_HOME}/.fluxbox
567    
568     # now generate fluxbox config files
569    
570     # fluxbox main config
571     cat ${ALX_SKELETONS}/fluxbox/init \
572     > ${ALX_UNPRIV_HOME}/.fluxbox/init
573    
574     # fluxbox autostart
575     cat ${ALX_SKELETONS}/fluxbox/apps \
576     > ${ALX_UNPRIV_HOME}/.fluxbox/apps
577    
578     # fluxbox menu header
579     cat ${ALX_SKELETONS}/fluxbox/menu.header \
580     > ${ALX_UNPRIV_HOME}/.fluxbox/menu
581    
582     # now fix it with proper messages :P
583     local ver="$(< /etc/mageversion)"
584     sed -i "s:@CHANGEME@:alx-${ver}  #${ALX_SERIAL}:g" \
585     ${ALX_UNPRIV_HOME}/.fluxbox/menu
586    
587     # add a newline (maybe there is no crlf in the header)
588     echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
589    
590     # fluxbox menu footer
591     cat ${ALX_SKELETONS}/fluxbox/menu.footer \
592     >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
593    
594     # add a newline (maybe there is no crlf in the footer)
595     echo >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
596    
597    
598     # setup some standart icons (sysinfo.lnk)
599     # basic config
600     cat ${ALX_SKELETONS}/xtdesktop/xtdeskrc > ${ALX_UNPRIV_HOME}/.xtdeskrc
601    
602     # clean desktop icon location
603     [ -d ${ALX_UNPRIV_HOME}/.xtdesktop ] && rm -rf ${ALX_UNPRIV_HOME}/.xtdesktop
604     install -d ${ALX_UNPRIV_HOME}/.xtdesktop
605    
606     # last but not least gen a icon with some sys informations
607     local sysinfo
608     local osversion
609     local xres
610     local yres
611    
612     osversion="$(< /etc/mageversion)"
613     sysinfo="Hostname: ${ALX_DEFAULT_HOSTNAME} Serial: #${ALX_SERIAL} OS: alx-${osversion} Kernel: $(uname -r)"
614    
615     # at first boot we got always a resolution of 1024x768-16@60
616     # middle of the screen
617     # (no txt - length required, xtdesk manage that itself)
618     xres="$((1024 / 2))"
619     # default y pos (full yres -22 !)
620     yres="$((768 - 22 ))"
621    
622     generate_icon \
623     --name "${sysinfo}" \
624     --command "exit 0" \
625     --icon "${ALX_SESSIONS_ICONS}/sysinfo.png" \
626     --dest "${ALX_UNPRIV_HOME}/.xtdesktop/sysinfo.lnk" \
627     --xres "${xres}" \
628     --yres "${yres}" \
629     --icon-width "1" \
630     --icon-height "1"
631    
632     # create a xinitrc
633     echo "exec startfluxbox" > ${ALX_UNPRIV_HOME}/.xinitrc
634    
635     # set correct permissions
636     chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}
637     chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox
638     chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox
639     chmod 0755 ${ALX_UNPRIV_HOME}/.xtdesktop
640     chmod 0644 ${ALX_UNPRIV_HOME}/.xtdeskrc
641     chmod 0644 ${ALX_UNPRIV_HOME}/.xinitrc
642  }  }
643    
644  #start|stop  # start|stop
645  preliminary_network(){  preliminary_network()
646    {
647   local module   local module
648    
649   if [ -f /etc/alxconfig-ng/state/configured ]   if [ -f /etc/alxconfig-ng/state/configured ]
650   then   then
651   #get module name   # compat for old clients
652   module=$(cat ${SETTINGSPATH}/modules)   if [ -f ${SETTINGSPATH}/modules ]
653   modprobe ${module}   then
654     # get module name
655     module=$(cat ${SETTINGSPATH}/modules)
656     modprobe ${module}
657     fi
658   else   else
659   #vars used by hwdetect   # vars used by hwdetect
660   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME   local NETCARD_FULLNAME NETCARD_DRIVER MOUSE_FULLNAME MOUSE_DEVICE SOUND_FULLNAME
661   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER   local SOUND_DRIVER XSERVER XMODULE XDESC FLOPPY_FULLNAME FLOPPY_DEVICE FLOPPY_DRIVER
662    
663   #get setting from hwdetect   # get setting from hwdetect
664   source /etc/sysconfig/hwsetup/knoppix   source /etc/sysconfig/hwsetup/knoppix
665   modprobe ${NETCARD_DRIVER}   modprobe ${NETCARD_DRIVER}
666   fi   fi
# Line 363  preliminary_network(){ Line 678  preliminary_network(){
678   else   else
679   rm -f /var/run/dhcpcd-eth?.pid   rm -f /var/run/dhcpcd-eth?.pid
680   fi   fi
681     [[ ${ALX_CONFD_NETWORKING} = true ]] && [[ ${RUNLEVEL} != S ]] && \
682     ${rc_base}/init.d/network stop
683    
684   echo -e ${COLMAGENTA}"Starting preliminary network ... "${COLDEFAULT}   echo -e ${COLMAGENTA}"Starting preliminary networking ... "${COLDEFAULT}
  dhcpcd &> /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  
  ##################################################  
685    
686   evaluate_retval   # start network configured from /etc/conf.d
687     if [[ ${ALX_CONFD_NETWORKING} = true ]]
688     then
689     ${rc_base}/init.d/network start
690     else
691     echo -e ${COLOREDSTAR}"Starting default dhcp based networking ... "${COLDEFAULT}
692     # -t 10 timeout of 10 secs
693     dhcpcd -t 10 &> /dev/null
694     evaluate_retval
695     fi
696   ;;   ;;
697    
698   stop)   stop)
699   echo -e ${COLMAGENTA}"Stopping preliminary network ... "${COLDEFAULT}   echo -e ${COLMAGENTA}"Stopping preliminary networking ... "${COLDEFAULT}
700   ifconfig eth0 down   if [[ ${ALX_CONFD_NETWORKING} = true ]]
701     then
702     ${rc_base}/init.d/network stop
703     else
704     echo -e ${COLOREDSTAR}"Stopping default dhcp based networking ... "${COLDEFAULT}
705     ifconfig eth0 down
706     fi
707   if ps -A|grep dhcpcd > /dev/null   if ps -A|grep dhcpcd > /dev/null
708   then   then
709   dhcpcd -z  &> /dev/null   dhcpcd -z  &> /dev/null
# Line 393  preliminary_network(){ Line 717  preliminary_network(){
717   esac   esac
718  }  }
719    
720    reset_system_settings()
721    {
722     # force load of de kbdkeys
723     loadkeys -q de
724     echo
725     echo -en ${COLRED}
726     echo -n "*** Warning: you are about to reset *all* local settings on this system!"
727     echo -e ${COLDEFAULT}
728     echo "*** Do you really want to continue ?"
729     echo -n "*** Enter 'yes' to continue, anything else to abort: "
730     read kbinsert
731     if [[ ${kbinsert} = yes ]]
732     then
733     echo -en ${COLRED}
734     echo -n "*** OK, you really want it ... killing all settings: "
735     for i in 3 2 1 now
736     do
737     echo -n " ${i}"
738     sleep 1
739     done
740     echo -e ${COLDEFAULT}
741    
742     ## reset all settings:
743     rm -rf ${SETTINGSPATH}/*
744     rm -f /etc/alxconfig-ng/serial
745     rm -rf /etc/alxconfig-ng/state
746    
747     # clear all printers & net-shares
748     :> /etc/cups/printers.conf
749     :> /etc/samba/smb.conf
750    
751     # remove inetd, cups & smb from init
752     rc-config del inetd &> /dev/null
753     rc-config del cups &> /dev/null
754     rc-config del samba &> /dev/null
755    
756     # remove all user settings
757     [ -d ${ALX_UNPRIV_HOME} ] && rm -rf ${ALX_UNPRIV_HOME}
758    
759     # remove all ica-sessions
760     find ${ALX_ICA_SESSIONS} -type f -name '*.ica' | xargs rm
761    
762     # remove all old nics and modules configs
763     find /etc/conf.d -type f -name 'net.*' | xargs rm
764     find /etc/modules.d -type f -name 'net.*' | xargs rm
765    
766     # restore default networking
767     cat ${ALX_SKELETONS}/net/net.eth0 > /etc/conf.d/net.eth0
768    
769     echo "I am done now, press [Enter] to reboot system ..."
770     else
771     echo "Aborted, press [Enter] to reboot system ..."
772     fi
773     read
774     reboot
775    }
776    
777    onboot_interface_list()
778    {
779     local file
780     local devices
781     local iface
782    
783     # get list of all devices
784     for file in $@
785     do
786     if [[ $(read_value ONBOOT ${file}) = yes ]]
787     then
788     iface="$(basename ${file} | sed s/net.//)"
789     # exclude backup files
790     case "${iface}" in
791     *~) ;;
792     *) devices="${devices} $(basename ${file} | sed s/net.//)" ;;
793     esac
794     fi
795     done
796    
797     echo "${devices}"
798    }
799    
800    # read values from net.* files
801    read_value()
802    {
803     local var="$1"
804     local file="$2"
805     local value
806    
807     # local all possible vars
808     # global
809     local ONBOOT
810     local NETWORKING
811    
812     # static
813     local IP
814     local NETMASK
815     local BROADCAST
816     local NETWORKING
817     local FORCE_MAC_TO
818    
819     # dhcp
820     local DHCP_PROG
821     local DHCP_START
822     local DHCP_STOP
823    
824     # default gw
825     local GATEWAY
826     local GATEWAY_IF
827    
828     # wireless extensions
829     local WIRELESS_AP
830     local WIRELESS_AUTH_MODE
831     local WIRELESS_BITRATE
832     local WIRELESS_CHANNEL
833     local WIRELESS_DEFAULT_KEY
834     local WIRELESS_ESSID
835     local WIRELESS_FREQUENCY
836     local WIRELESS_KEY
837     local WIRELESS_KEY_ASCII
838     local WIRELESS_KEY_0
839     local WIRELESS_KEY_1
840     local WIRELESS_KEY_2
841     local WIRELESS_KEY_3
842     local WIRELESS_KEY_LENGTH
843     local WIRELESS_MODE
844     local WIRELESS_NICK
845     local WIRELESS_NWID
846     local WIRELESS_POWER
847    
848     source ${file}
849     eval value=\$$(echo ${var})
850     echo "${value}"
851    }
852    
853  case $1 in  case $1 in
854   start)   start)
855   #retrieve or validate current serial   # check for global overrides
856     [ -f ${SETTINGSPATH}/confd-networking ] && ALX_CONFD_NETWORKING=true
857     [ -f /hardware-auto-detection ] && ALX_FORCED_RECHECK=true
858     read_cmdline hardware-auto-detection && ALX_FORCED_RECHECK=true
859     read_cmdline alx-reset-settings && ALX_RESET_SETTINGS=true
860    
861     # kill all settings if requested
862     if [[ ${ALX_RESET_SETTINGS} = true ]]
863     then
864     reset_system_settings
865     fi
866    
867     # retrieve or validate current serial
868   get_system_serial   get_system_serial
869   if [ "${ALX_HW_DETECT}" == "true" ]   if [[ ${ALX_HW_DETECT} = true ]]
870   then   then
871   import_settings_to_db   if [[ ${ALX_FORCED_RECHECK} = true ]]
872     then
873     update_settings_in_db
874     else
875     import_settings_to_db
876     fi
877   import_settings_local   import_settings_local
878    
879   # here we should also exchange the ssh keys   # here we should also exchange the ssh keys
# Line 408  case $1 in Line 882  case $1 in
882   config_ssh_auth   config_ssh_auth
883   fi   fi
884    
885   #now setup system configuration   # now setup system configuration
886   #alx_setup_or_whatever_it_will_be_called()   # alx_setup_or_whatever_it_will_be_called()
887   [ "${ALX_HW_DETECT}" == "false" ] && update_system_settings   [[ ${ALX_HW_DETECT} = false ]] && update_system_settings
888    
889   #stop at last the preliminary networking (dhcp)   # stop at last the preliminary networking (dhcp)
890   preliminary_network stop   preliminary_network stop
891   ;;   ;;
892    
893   stop)   stop)
894   #unset_alx_connected #--> now in alxsetstate-rc6   # unset_alx_connected #--> now in alxsetstate-rc6
895   # ! important !: del systemstate   # ! important !: del systemstate
896   [ -f /etc/alxconfig-ng/state/state ] && rm /etc/alxconfig-ng/state/state   [ -f /etc/alxconfig-ng/state/state ] && rm /etc/alxconfig-ng/state/state
897   sleep 0.1   sleep 0.1

Legend:
Removed from v.265  
changed lines
  Added in v.543