root/module/Shell/uninstall.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 uninstall script
5 ##
6 ###############################################################################
7
8 modName=LADVD
9
10 ###############################################################################
11 ##
12 ##  Include module library
13 ##
14 ###############################################################################
15 shellDir=/raid/data/module/$modName/Shell
16 { [ -r "$shellDir/module.lib" ] && source "$shellDir/module.lib"; } || { echo fail; exit 1; }
17
18 ###############################################################################
19 ##
20 ##  Start module uninstall
21 ##
22 ###############################################################################
23 ModuleUninstallStart
24
25 ###############################################################################
26 ##
27 ##  Module specific uninstallation stuff
28 ##
29 ###############################################################################
30
31
32 ###############################################################################
33 ##
34 ##  Finish module uninstall indicating success
35 ##
36 ###############################################################################
37 ModuleUninstallEnd 0
38
Note: See TracBrowser for help on using the browser.