Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/daemon/include/daemon.global.class

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1666 by niro, Fri Mar 11 19:38:10 2011 UTC revision 1925 by niro, Wed Nov 9 15:17:49 2011 UTC
# Line 1  Line 1 
1  # $Id$  # $Id$
2    
3    # loads client classes from $MCLIBDIR
4    load_client_classes()
5    {
6     # client specific
7     for i in ${MCLIBDIR}/include/*.client.class
8     do
9     source ${i} || eecho "error loading ${i}"
10     done
11    }
12    
13    # restarts the whole service via remote cmd
14    restart_service()
15    {
16     local pid
17     for pid in $(pidof sslsvd)
18     do
19     kill -SIGHUP ${pid}
20     done
21    }
22    
23  # # import_resource $table $serial $resource $value  # # import_resource $table $serial $resource $value
24  # import_resource()  # import_resource()
25  # {  # {
# Line 64  help_topics() Line 84  help_topics()
84   mecho "\tauth     - authenticate to the daemon"   mecho "\tauth     - authenticate to the daemon"
85   mecho "\tprovide  - shows provides of a system"   mecho "\tprovide  - shows provides of a system"
86   mecho "\trequire  - verify plugin requirements"   mecho "\trequire  - verify plugin requirements"
87     mecho "\treload   - reloads all client classes plugins"
88     mecho "\trestart  - restarts the daemon"
89   mecho "\tnocolors - disable colors, useful for the webclient"   mecho "\tnocolors - disable colors, useful for the webclient"
90   mecho "\tquiet    - do not print any unecessary messages"   mecho "\tquiet    - do not print any unecessary messages"
91   mecho "\thelp     - shows help"   mecho "\thelp     - shows help"

Legend:
Removed from v.1666  
changed lines
  Added in v.1925