blob: 01cc11c38d7342b3209d6be78a16129df9b38b63 (
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
|
post_install() {
# Remind the user to activate the product
echo
echo "The launcher is called agisoft-metashape"
echo
echo "Run the following command to activate the product"
echo
echo "sudo agisoft-metashape --activate 11111-22222-33333-44444-55555"
echo
echo "NOTE: the number after "--activate" is your node-locked license"
echo
}
pre_remove() {
echo "Deactivating the product..."
agisoft-metashape --deactivate 2>/dev/null
}
post_remove() {
rm -rf /opt/agisoft/metashape
rm -d /opt/agisoft 2>/dev/null
echo
echo "The users data were kept at the below locations"
echo "\$HOME/.agisoft"
echo "\$HOME/.config/Agisoft"
echo "\$HOME/.local/share/Agisoft"
echo
}
|