summarylogtreecommitdiffstats
path: root/greyhole.install
diff options
context:
space:
mode:
Diffstat (limited to 'greyhole.install')
-rw-r--r--greyhole.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/greyhole.install b/greyhole.install
new file mode 100644
index 000000000000..5a97935482ff
--- /dev/null
+++ b/greyhole.install
@@ -0,0 +1,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
+}