Magellan Linux

Annotation of /alx-src/trunk/tinyalxconfig-ng/functions/serial_functions.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 537 - (hide annotations) (download) (as text)
Mon Jan 26 17:16:32 2009 UTC (15 years, 3 months ago) by niro
File MIME type: application/x-sh
File size: 618 byte(s)
-fixed header
1 niro 537 # $Id$
2 niro 386 # 1.serial 2.mtime 3.mac
3     validate_serial()
4     {
5     local serial
6     local db_serial
7     local mtime
8     local mac
9    
10     # abort if params are missing
11     [ $# -ne 3 ] && return 1
12    
13     serial=$1
14     mtime=$2
15     mac=$3
16    
17     db_serial=$(mysqldo "select serial from client_serials where mtime='${mtime}'" ) # and mac='${mac}'" )
18    
19     if [[ ${db_serial} = ${serial} ]]
20     then
21     return 0
22     else
23     return 1
24     fi
25     }
26    
27     show_invalid_serial_msg()
28     {
29     echo -e ${COLRED}
30     echo "Current Serial '${ALX_SERIAL}' is invalid."
31     echo "None of the current settings of this client will be touched."
32     echo "Please inform your system-administrator."
33     echo -e ${COLDEFAULT}
34     }