-
Notifications
You must be signed in to change notification settings - Fork 13
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
iRODS: v0.9.8 #504
Merged
Merged
iRODS: v0.9.8 #504
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
fa57ead
added: security group iRODS open 443 port
scimerman c4aad84
Merged with iRODS v1
scimerman 40de7bb
iRODS: v2 working irods & davrods - still WIP
scimerman a52b864
iRODS: add openstack open port for postgresql 5432 for live replication
scimerman 81184a0
Removing stale developing test template from upstream
scimerman c0774ec
iRODS: minor bug fixes
scimerman c4b157e
iRODS: readme update
scimerman ebda4b9
"iRODS: fix faulty hostname lookup"
scimerman c576103
iRODS: split resource variable into local and default
scimerman d373d40
iRODS: updated README
scimerman 9354902
iRODS: split resource variable fix
scimerman 858275a
iRODS: fixed database hostname to use variable
scimerman 9ab7597
fix: removed workign temporary comments
scimerman 1df6a11
iRODS: set 4 threads in core.re
scimerman 8bfec36
iRODS: edited irods role README.md
scimerman a49f261
iRODS: Davrods default resource
scimerman a012dad
iRODS: estetic fix - port order
scimerman 911baac
iRODS: moved the appending of dhparams to the chain from role into th…
scimerman 08270ed
iRODS: PR fixes added
scimerman 7d851ac
iRODS: davrods make hosting machine independant
scimerman 905f130
iRODS: removed empty spaces and lines
scimerman 0ac06cc
iRODS: fixed dhparams key size from 2048 to 4096
scimerman 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
- name: Restarting PGSQL and making sure it is enabled | ||
ansible.builtin.systemd: | ||
name: postgresql | ||
state: restarted | ||
enabled: true | ||
become: true | ||
listen: restart_postgresql | ||
|
||
# Start/stop/restart service call fails if with error if already in that state | ||
# so it's best if done via user call (as this is what the service does anyways) | ||
- name: Restart iRODS server manually as {{ irods_service_account }} user | ||
command: /var/lib/irods/irodsctl restart | ||
become_user: '{{ irods_service_account }}' | ||
become: true | ||
listen: irodsctl_restart | ||
... |
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
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.
Comment still mentions 4096 bits. Why was this downgraded? (Note that 2048 bits will take less time, but does not comply with UMCG encryption policy.)