aboutsummaryrefslogtreecommitdiffstats
path: root/testing/openfire/openfire.post-install
diff options
context:
space:
mode:
authorTaner Tas <taner76@gmail.com>2018-09-03 22:25:30 +0300
committerNatanael Copa <ncopa@alpinelinux.org>2018-09-04 10:36:49 +0000
commitc045c835e171568e0c695a1f623270c584214545 (patch)
treea42c08a5d942e23b9d77a1591cd34d3b46e37642 /testing/openfire/openfire.post-install
parenta6caef63909ff1fc535a9c3a236cd50ba0e612b1 (diff)
downloadaports-c045c835e171568e0c695a1f623270c584214545.tar.bz2
aports-c045c835e171568e0c695a1f623270c584214545.tar.xz
testing/openfire: new aport
https://www.igniterealtime.org/projects/openfire/ Openfire is a cross-platform real-time collaboration server based on the XMPP (Jabber) protocol.
Diffstat (limited to 'testing/openfire/openfire.post-install')
-rwxr-xr-xtesting/openfire/openfire.post-install18
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/openfire/openfire.post-install b/testing/openfire/openfire.post-install
new file mode 100755
index 0000000000..9b2a66fae8
--- /dev/null
+++ b/testing/openfire/openfire.post-install
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+_ofhome=/var/lib/openfire
+
+for conf in "$_ofhome"/conf/openfire.xml \
+ "$_ofhome"/conf/security.xml \
+ "$_ofhome"/resources/security/client.truststore \
+ "$_ofhome"/resources/security/keystore \
+ "$_ofhome"/resources/security/truststore
+do
+ if [ -f "$conf" ]
+ then
+ printf "$conf exists. Not creating new one. \n\n"
+ else
+ printf "Copying new $conf \n"
+ cp -av "$conf".default "$conf" || printf "Copying new $conf failed. \n\n"
+ fi
+done