blob: b53387bd5c1434c7875092f6bd4ed6d16ed08c6f (
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
|
#!/bin/sh
EULA() {
cat <<-EOM
> By installing this package you acknowledge that you agree to the End-User
> License Agreement (EULA) found in /usr/share/doc/omnissa-horizon-client/.
> If you do not agree to Omnissa EULA remove this package immediately:
> $ pacman -Rc omnissa-horizon-client
EOM
}
hosts_add() {
if ! grep -q 'view-localhost' /etc/hosts; then
echo '127.0.0.2 view-localhost # added by omnissa-horizon-client' >> /etc/hosts
fi
}
hosts_remove() {
sed -i '/view-localhost/d' /etc/hosts
}
post_install() {
EULA
hosts_add
}
post_upgrade() {
hosts_add
}
post_remove() {
hosts_remove
}
|