root/module/Shell/install.sh

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

initial checkin

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