Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 386 - (hide annotations) (download) (as text)
Wed Jun 4 16:47:56 2008 UTC (16 years ago) by niro
File MIME type: application/x-sh
File size: 733 byte(s)
-initial import

1 niro 386 # $Header: /home/cvsd/alx-cvs/alx-src/tinyalxconfig-ng/functions/serial_functions.sh,v 1.1 2008-06-04 16:47:56 niro Exp $
2     # 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     }