blob: 91d7da03d34988fa0a67be7b60f2e38744cfb300 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "==> Note: To enable mounting and unmounting of smb/cifs shares as"
echo "==> user, you will need to issue the following command as root:"
echo "# chmod +s \$(which mount.cifs)"
echo "==> These command will need to be re-run every upgrade of smbclient"
}
post_upgrade() {
post_install $1
}
|