-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #31878: Turn on Qpid auth and set ACLs special CN from qpid rou…
…ter cert
- Loading branch information
Showing
4 changed files
with
18 additions
and
17 deletions.
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
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,14 +1,14 @@ | ||
# allow the actions needed by katello_agent | ||
acl allow katello_agent@QPID create queue | ||
acl allow katello_agent@QPID consume queue | ||
acl allow katello_agent@QPID access exchange | ||
acl allow katello_agent@QPID access queue | ||
acl allow katello_agent@QPID publish exchange routingkey=<%= @agent_event_queue_name %> | ||
acl allow katello_agent@QPID publish exchange name=qmf.default.direct | ||
acl allow katello_agent@QPID access method name=create | ||
# allow the actions needed by qpid_router_katello_agent | ||
acl allow qpid_router_katello_agent@QPID create queue | ||
acl allow qpid_router_katello_agent@QPID consume queue | ||
acl allow qpid_router_katello_agent@QPID access exchange | ||
acl allow qpid_router_katello_agent@QPID access queue | ||
acl allow qpid_router_katello_agent@QPID publish exchange routingkey=<%= @agent_event_queue_name %> | ||
acl allow qpid_router_katello_agent@QPID publish exchange name=qmf.default.direct | ||
acl allow qpid_router_katello_agent@QPID access method name=create | ||
|
||
acl deny-log katello_agent@QPID access method name=* | ||
acl deny-log katello_agent@QPID all all | ||
acl deny-log qpid_router_katello_agent@QPID access method name=* | ||
acl deny-log qpid_router_katello_agent@QPID all all | ||
|
||
# allow anything else | ||
acl allow all all |