Magellan Linux

Contents of /mcore-src/trunk/mcore-tools/daemon/client/mcored.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2004 - (show annotations) (download) (as text)
Mon Aug 13 09:36:52 2012 UTC (11 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 2177 byte(s)
-use mecho instead of echo
1 #!/bin/bash
2
3 MCLIBDIR="/usr/lib/mcored"
4
5 # globals
6 source ${MCLIBDIR}/include/daemon.global.class
7 source ${MCLIBDIR}/include/sessionauth.global.class
8 #source ${MCLIBDIR}/include/mysqlfunctions.global.class
9 source ${MCLIBDIR}/include/hwdetection.global.class
10
11 # load client classes plugins
12 load_client_classes
13
14 # config settings
15 source /etc/mcore/config.rc
16 #source /etc/mcore/serial
17
18 # import_hardware_resource()
19 # {
20 # local resource="$1"
21 # local value
22 #
23 # # special cases
24 # case ${resource} in
25 # gfxcard) value="$(get_x11_driver_modules)" ;;
26 # *) value="$(get_hwinfo --with-description ${resource})" ;;
27 # esac
28 #
29 # # if [[ ${DEBUG} = 1 ]]
30 # # then
31 # # echo "${resource}=${value}" >> /root/lala.log
32 # # echo "mysqldo \"update status set ${resource}='${value}' where serial=${ALX_SERIAL};\"" >> /root/lala.log
33 # # fi
34 # # mysql_insert status,serial="${ALX_SERIAL}","${resource}"="${value}"
35 #
36 # import_resource status "${ALX_SERIAL}" "${resource}" "${value}"
37 # }
38
39
40 # set_init_state()
41 # {
42 # local ip
43 # ip=$(ifconfig | grep -A1 eth0 | grep inet | sed 's/.*inet\ addr:\(.*\) Bcast.*/\1/;')
44 #
45 # }
46
47 DEBUG=1
48 NOCOLORS="false"
49 WEBCRLF="false"
50 QUIET="false"
51
52 run=run
53 valid_session=no
54
55 while [[ ${run} = run ]]
56 do
57 read line
58
59 case ${line} in
60 quit) run=quit ;;
61
62 # only react on the globals -> import|get|set|auth
63 import*) run_class ${line} ;;
64 get*) run_class ${line} ;;
65 set*) run_class ${line} ;;
66 auth*) validate_auth ${line/auth /} ;;
67 provide) valid_session && print_provide ;;
68 require) valid_session && verify_requirements ;;
69 reload) valid_session && mecho "reloading client classes ..." && load_client_classes ;;
70 restart) valid_session && restart_service ;;
71 nocolors) export NOCOLORS="true" ;;
72 webcrlf) export WEBCRLF="true" ;;
73 quiet) export QUIET="true" ;;
74 help*)
75 if valid_session
76 then
77 if [[ ${line} = help ]]
78 then
79 help_topics
80 else
81 run_class ${line}
82 fi
83 else
84 mecho "You must authenticate yourself first!"
85 mecho " auth [username] [password]"
86 fi
87 ;;
88
89 *)
90 mecho "Unkown command '${line}'"
91 mecho "Type 'help' for more information."
92 #echo "$line" >> /root/lala.log
93 ;;
94 esac
95 done

Properties

Name Value
svn:executable *