summarylogtreecommitdiffstats
path: root/agisoft-metashape-pro.install
blob: 93079df0f29d866ee22751c487ed4fbbe1775756 (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
post_install() {
    # Remind the user the activate the product 
    echo
    echo "The launcher is called agisoft-metashape-pro"
    echo
    echo "Run the following command to activate the product"
    echo
    echo "sudo agisoft-metashape-pro --activate 11111-22222-33333-44444-55555"
    echo
    echo "NOTE: the number after "--activate" is your node-locked license"
    echo
}

pre_upgrade() {
    echo "Deactivating the product..."
    agisoft-metashape-pro --deactivate 2>/dev/null
}

post_upgrade() {
    echo 
    echo "This upgrade change the rehostable directory for activation"
    echo
    echo "Therefore, we deactivated the licence to avoid it becomes invalid"
    echo
    echo "Please use sudo agisoft-metashape-pro --activate to reactivate your licence"
    echo
    echo "This behaviour will be removed in the next release"
}

pre_remove() {
    echo "Deactivating the product..."
    agisoft-metashape-pro --deactivate 2>/dev/null
}

post_remove() {
    rm -rf /opt/agisoft/metashape-pro
    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
}