blob: d18d56501e4fb0b69b74ba47ee1a69577515a798 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
cat << EOF
==> Before using VMware, you may need to enable some services:
- vmware-networks.service: to have network access in VMs
- vmware-usbarbitrator.service: to connect USB devices inside VMs
- vmware-hostd.service: to share VMs on the network
EOF
}
post_remove() {
cat << EOF
==> To also remove VMware settings, delete /etc/vmware and /etc/vmware-installer directories.
EOF
}
|