From 32d6ec2df1200b545293ba7b1a62581856a0f888 Mon Sep 17 00:00:00 2001 From: sub Date: Sun, 2 Jun 2019 22:18:03 +0200 Subject: [PATCH 1/2] inverted logic of ln -s --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index e957dff..ab797b5 100755 --- a/build.sh +++ b/build.sh @@ -79,8 +79,8 @@ for d in $mailman_data_subdirs ; do ln -sf /data/$d /var/lib/mailman/$d done -# We still have to add the images, that live in /usr/share/images/mailman -ln -sf /data/icons /usr/share/images/mailman +# We still have to add the images, those live in /usr/share/images/mailman +ln -sf /usr/share/images/mailman /data/icons # Since Mailman installs stuff in /etc/mailman too, we do the same trick # as above but with the /config mountpoint. -- GitLab From 208610de219bfe8c468075c4e217ffaaca58fd11 Mon Sep 17 00:00:00 2001 From: sub Date: Sun, 2 Jun 2019 22:49:51 +0200 Subject: [PATCH 2/2] reverted command --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ab797b5..2226ed6 100755 --- a/build.sh +++ b/build.sh @@ -79,7 +79,7 @@ for d in $mailman_data_subdirs ; do ln -sf /data/$d /var/lib/mailman/$d done -# We still have to add the images, those live in /usr/share/images/mailman +# We still have to add the images, those live in /usr/share/images/mailman. ln -sf /usr/share/images/mailman /data/icons # Since Mailman installs stuff in /etc/mailman too, we do the same trick -- GitLab