root/module/Shell/update.sh

Revision 1, 1.2 kB (checked in by ixs, 13 years ago)

initial checkin

  • Property svn:executable set to *
Line 
1 #!/bin/sh
2 ###############################################################################
3 ##
4 ##  Module update script
5 ##
6 ###############################################################################
7
8 modName=$1
9 modVersion=$2
10 modEnable=$3
11 modURL=$4
12
13 ###############################################################################
14 ##
15 ##  Include module library
16 ##
17 ###############################################################################
18 modLibDir=/raid/data/module/$modName/Shell
19 { [ -r "$modLibDir/module.lib" ] && source "$modLibDir/module.lib"; } || { echo error; exit 1; }
20
21 ###############################################################################
22 ##
23 ##  Start the module update
24 ##
25 ###############################################################################
26 ModuleUpdateStart
27
28 ###############################################################################
29 ##
30 ##  Module specific update stuff
31 ##
32 ###############################################################################
33
34
35 ###############################################################################
36 ##
37 ##  Finish module update indicating error
38 ##
39 ###############################################################################
40 ModuleUpdateEnd 1
41
Note: See TracBrowser for help on using the browser.