summaryrefslogtreecommitdiff
path: root/setup_native/scripts/deregister_extensions
blob: 4a8f91de41f059d39781cfc85ea420c48358e7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash

USAGE="Usage: $0"

SCRIPTNAME=`basename "$0"`
PROGRAMDIR=`dirname "$0"`
OFFICEDIR="$PROGRAMDIR/.."
EXTENSIONDIR=$OFFICEDIR/share/extension/install
UNOPKG=$PROGRAMDIR/unopkg

help()
{
    echo 
    echo "Uninstallation script for office extensions located in <office>/share/extension/install"
    echo 
    echo "This uninstallation script can be executed after successful installation of packages."
    echo "Please execute this script, before uninstallation of packages."
    echo "Usage: $0"
    echo "No parameter required."
    echo
}

#
# This script is only for root installations
# (How about installations done with user privileges?)
#

# if [ $UID -ne 0 ]
# then
#     printf "\nThis script is for installation only wiht administrative rights only\n"
#     help
#     exit 2
# fi

#
# Checking existence of unopkg in program directory
#

if [ ! -f "$UNOPKG" ]; then
    echo "Error: File $UNOPKG does not exist"
    exit 1
fi

if [ ! -x "$UNOPKG" ]; then
    echo "Error: File $UNOPKG is not an executable file"
    exit 1
fi

#
# Collecting all files located in share/install/extensions
#

FILELIST=`find $EXTENSIONDIR -type f -name "*.oxt" -print`

if [ -z "$FILELIST" ]
then
    printf "\n$0: No extensions found in $EXTENSIONDIR\n"
    exit 2
fi

echo
echo "Uninstalling:"
for i in $FILELIST; do
    echo `basename $i`
done
echo

for i in $FILELIST; do
    COMMAND="$UNOPKG remove --shared `basename $i`"
    echo $COMMAND
    $COMMAND
done

echo
echo "Uninstallation done ..."
echo

exit 0