-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OF-2526 Support SystemD for Debian #2563
Open
stokito
wants to merge
15
commits into
igniterealtime:main
Choose a base branch
from
stokito:OF-2526-Support-systemd
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e838a75
openfire.postinst and postrm: replace doc with a link
stokito e68f3a7
openfire.default: remove useless comment
stokito ebe7cbd
openfire.sh: reformat tabs to two spaces
stokito 272a8c6
openfire.sh: split OS detection and $JAVA_HOME detection
stokito eed2580
openfire.sh: fix SC2006: Use $(...) notation instead of legacy backti…
stokito 6852da2
openfire.sh: merge two $cygwin ifs
stokito 8b8d53b
openfire.sh: fix shellcheck warnings
stokito 14e83a1
openfire.sh: use same JAVA_HOME search by alternatives as the init.d …
stokito e4d3591
OF-2786: Openfire to use system-defined preferences for IPv6 over IPv4
guusdk 7918021
openfire.sh: print options
stokito 6127a33
debian package: Install /usr/share/openfire/bin/openfire.sh
stokito c1144d3
debian package: Install UFW rules
stokito c559301
admin console setup page: check JRE version with Runtime.Version
stokito 7d97327
OF-2526: Support SystemD in Debian package
stokito 12422c4
OF-2526: SystemD: limit resources and add openfire.slice
stokito File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/etc/openfire | ||
/usr/share/openfire/bin | ||
/usr/share/openfire/lib | ||
/usr/share/openfire/resources | ||
/var/log/openfire | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
bin/openfire.sh /usr/share/openfire/bin | ||
lib/*.jar usr/share/openfire/lib | ||
lib/log4j2.xml etc/openfire | ||
resources/database usr/share/openfire/resources | ||
conf/openfire.xml etc/openfire | ||
conf/security.xml etc/openfire | ||
resources/security etc/openfire | ||
plugins var/lib/openfire | ||
dist/* / | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's happening with this line? and why is
/usr
above being mixed withusr
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the dist folder for supplementary files that just needed to be copied as is. Currently there is the Systemd's openfire servise unit file and the UFW firewall rules. All the files and folders inside of it will be copied into root with the same paths.