blob: bbce51aa0852844e9bd0e077bc1c189db610443c (
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
|
output() {
while IFS= read line; do
echo "-- $line"
done
}
post_install() {
output << EOF
In order to use the openafs-client you have to install the openafs kernel
module (openafs-modules or openafs-modules-dkms).
You may want to edit /etc/openafs/ThisCell to be your current cell.
Afterwards you can enable and start the openafs-client:
systemctl enable openafs-client.service
systemctl start openafs-client.service
EOF
}
post_remove() {
output << EOF
The following directories have not been removed. You can manually remove them
after making sure that openafs is not running anymore:
/afs
/var/cache/openafs
EOF
}
|