Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
b1f8364f
Commit
b1f8364f
authored
Jun 18, 2015
by
akrherz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Solaris build updates related to recent modules.xml inclusion
parent
5c8b2e5e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletion
+9
-1
build.xml
build/build.xml
+1
-1
postinstall
build/solaris/postinstall
+5
-0
preremove
build/solaris/preremove
+3
-0
No files found.
build/build.xml
View file @
b1f8364f
...
...
@@ -1176,7 +1176,7 @@
<copy
tofile=
"${target.solaris.root}/pkginfo"
file=
"${basedir}/build/pkg/pkginfo"
/>
<copy
tofile=
"${target.solaris.root}/opt/openfire/resources/solaris/openfire.xml"
file=
"${basedir}/build/solaris/openfire.xml"
/>
<copy
tofile=
"${target.solaris.root}/opt/openfire/resources/solaris/modules.xml"
file=
"${basedir}/
build/solaris
/modules.xml"
/>
<copy
tofile=
"${target.solaris.root}/opt/openfire/resources/solaris/modules.xml"
file=
"${basedir}/
src/conf
/modules.xml"
/>
<copy
tofile=
"${target.solaris.root}/checkinstall"
file=
"${basedir}/build/solaris/checkinstall"
/>
<copy
tofile=
"${target.solaris.root}/postinstall"
file=
"${basedir}/build/solaris/postinstall"
/>
<copy
tofile=
"${target.solaris.root}/preremove"
file=
"${basedir}/build/solaris/preremove"
/>
...
...
build/solaris/postinstall
View file @
b1f8364f
...
...
@@ -10,6 +10,11 @@ if [ -f /tmp/openfireInstallBackup/security.xml ]; then
/bin/chown daemon:daemon /opt/openfire/conf/security.xml
fi
if
[
-f
/tmp/openfireInstallBackup/modules.xml
]
;
then
/bin/mv /tmp/openfireInstallBackup/modules.xml /opt/openfire/conf/modules.xml
/bin/chown daemon:daemon /opt/openfire/conf/modules.xml
fi
if
[
-f
/tmp/openfireInstallBackup/keystore
]
;
then
/bin/mv /tmp/openfireInstallBackup/keystore /opt/openfire/resources/security/keystore
/bin/chown daemon:daemon /opt/openfire/resources/security/keystore
...
...
build/solaris/preremove
View file @
b1f8364f
...
...
@@ -11,6 +11,9 @@ if [ -d "/opt/openfire" ]; then
if
[
-f
/opt/openfire/conf/security.xml
]
;
then
/bin/cp
-f
/opt/openfire/conf/security.xml /tmp/openfireInstallBackup/security.xml
fi
if
[
-f
/opt/openfire/conf/modules.xml
]
;
then
/bin/cp
-f
/opt/openfire/conf/modules.xml /tmp/openfireInstallBackup/modules.xml
fi
if
[
-f
/opt/openfire/resources/security/keystore
]
;
then
/bin/cp
-f
/opt/openfire/resources/security/keystore /tmp/openfireInstallBackup/keystore
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment