Commit 23cc770c authored by David Smith's avatar David Smith Committed by david

Make sure that the upgrade scripts back up everything we say should be backed...

Make sure that the upgrade scripts back up everything we say should be backed up in the manual install instructions

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7087 b35dd754-fafc-0310-a699-88a17e54d16e
parent 22eb2064
......@@ -8,6 +8,18 @@ if [ -f /tmp/security ]; then
mv /tmp/security /usr/local/wildfire/resources/
fi
if [ -f /tmp/embedded-db ]; then
mv /tmp/embedded-db /usr/local/wildfire/embedded-db
fi
if [ -f /tmp/enterprise ]; then
mv /tmp/enterprise /usr/local/wildfire/enterprise
fi
if [ -f /tmp/plugins ]; then
mv /tmp/plugins /usr/local/wildfire/plugins
fi
WILDFIRE_HOME=/usr/local/wildfire/
WILDFIRE_GID=`cat /private/tmp/wildfiregid`
rm /private/tmp/wildfiregid
......
......@@ -6,6 +6,8 @@
# preserve these files, they should never be upgraded
cp /usr/local/wildfire/conf/wildfire.xml /tmp/
cp -r /usr/local/wildfire/resources/security /tmp/
cp -r /usr/local/wildfire/embedded-db /tmp/
cp -r /usr/local/wildfire/enterprise /tmp/
cp -r /usr/local/wildfire/plugins /tmp/
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment