From 45f7df03cbf00d63d74ef6b37181569562ac67a2 Mon Sep 17 00:00:00 2001 From: Gilrain Date: Sat, 12 May 2018 10:47:32 +0200 Subject: [PATCH] add message about config paths on new installations --- asf.install | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/asf.install b/asf.install index f7b7b2f60c38..a5ebcf21cde1 100644 --- a/asf.install +++ b/asf.install @@ -1,8 +1,10 @@ post_install() { systemd-sysusers asf.conf chown -R asf: /var/lib/asf + echo "# configuration is done in /var/lib/asf/config or ~/.config/asf depending on the service file used." } post_upgrade() { - post_install $1 + systemd-sysusers asf.conf + chown -R asf: /var/lib/asf }