blob: 5a97935482fffef6099e2996946df9e7b1196a04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install() {
systemctl restart smbd nmbd
echo "Manual Steps:"
echo "- Edit /etc/samba/smb.conf and make sure the following two options are set:"
echo " unix extensions = no"
echo " wide links = yes"
echo "- Create a \"greyhole\" database and import /usr/share/greyhole/schema-mysql.sql"
echo "- Read /usr/share/greyhole/USAGE and the documents at "
echo " https://github.com/gboudreau/Greyhole/wiki to configure your installation"
echo " Also see: https://wiki.archlinux.org/index.php/Greyhole#Configuration"
}
post_upgrade() {
systemctl restart smbd nmbd
}
|