Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 305 - (hide annotations) (download) (as text)
Sun Aug 28 19:30:03 2005 UTC (18 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 780 byte(s)
added a msg for invalid serials

1 niro 305 # $Header: /home/cvsd/alx-cvs/alx-src/alxconfig-ng/functions/serial_functions.sh,v 1.3 2005-08-28 19:30:03 niro Exp $
2 niro 228 # 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=$(mysql_command ${SQL_USER} ${SQL_PASS} ${SQL_HOST} ${SQL_DB} \
18     "select serial from client_serials where mtime='${mtime}' and mac='${mac}'" )
19    
20     if [[ ${db_serial} = ${serial} ]]
21     then
22     return 0
23     else
24     return 1
25     fi
26     }
27 niro 305
28     show_invalid_serial_msg()
29     {
30     echo -e ${COLRED}
31     echo "Current Serial '${ALX_SERIAL}' is invalid."
32     echo "None of the current settings of this client will be touched."
33     echo "Please inform your system-administrator."
34     echo -e ${COLDEFAULT}
35     }