Last change
on this file since 7353 was
7353,
checked in by jrpelegrina, 3 years ago
|
Deleted files for the zenity version of the zomando
|
-
Property svn:executable set to
*
|
File size:
236 bytes
|
Rev | Line | |
---|
[7353] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | |
---|
| 4 | ACTION="$1" |
---|
| 5 | |
---|
| 6 | case $ACTION in |
---|
| 7 | remove) |
---|
| 8 | apt-get remove -y hotpotatoes |
---|
| 9 | TEST=$( dpkg-query -s hotpotatoes 2> /dev/null| grep Status | cut -d " " -f 4 ) |
---|
| 10 | if [ "$TEST" == 'installed' ];then |
---|
| 11 | exit 1 |
---|
| 12 | fi |
---|
| 13 | ;; |
---|
| 14 | esac |
---|
| 15 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.