Last change
on this file since 7339 was
7339,
checked in by jrpelegrina, 3 years ago
|
Deleted files for the zenity version of the zomando
|
-
Property svn:executable set to
*
|
File size:
442 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | |
---|
4 | ACTION="$1" |
---|
5 | |
---|
6 | PACKAGE_LIST="lliurex-openmeetings-data lliurex-openmeetings-remote" |
---|
7 | |
---|
8 | |
---|
9 | case $ACTION in |
---|
10 | |
---|
11 | postInstall) |
---|
12 | |
---|
13 | echo "Launching Openmeetings configurator" |
---|
14 | "lliurex-openmeetings-setup" |
---|
15 | |
---|
16 | ;; |
---|
17 | remove) |
---|
18 | |
---|
19 | for ix in $PACKAGE_LIST |
---|
20 | do |
---|
21 | |
---|
22 | apt-get remove -y $ix |
---|
23 | TEST=$( dpkg-query -s $ix 2> /dev/null| grep Status | cut -d " " -f 4 ) |
---|
24 | if [ "$TEST" == 'installed' ];then |
---|
25 | exit 1 |
---|
26 | fi |
---|
27 | done |
---|
28 | ;; |
---|
29 | esac |
---|
30 | |
---|
31 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.