Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
OpenEdx
ansible
Commits
98406462
Commit
98406462
authored
Mar 23, 2013
by
Vincent Van der Kussen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made user and password options that can be passed to the module
parent
38c41b6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
library/rhn_channel
+15
-4
No files found.
library/rhn_channel
View file @
98406462
...
...
@@ -31,9 +31,18 @@ options:
description:
- The full url to the rhn/sattelite api
required: true
default: https://rhn.redhat.com/rpc/api
user:
description:
- the user to login to rhn/sattelite
required: true
pwd:
description:
- the user's password
required: true
examples:
- code: rhn_channel name=rhel-x86_64-server-v2vwin-6 sysname=server01
url=https://rhn.redhat.com/rpc/api
url=https://rhn.redhat.com/rpc/api
user=rhnuser pwd=guessme
description: add software channel rhel-x86_64-server-v2vwin-6
to server01 in Red Hat Network
'''
...
...
@@ -93,6 +102,8 @@ def main():
name
=
dict
(
required
=
True
),
sysname
=
dict
(
required
=
True
),
url
=
dict
(
required
=
True
),
user
=
dict
(
required
=
True
),
pwd
=
dict
(
required
=
True
),
)
# supports_check_mode=True
)
...
...
@@ -101,10 +112,10 @@ def main():
channelname
=
module
.
params
[
'name'
]
systname
=
module
.
params
[
'sysname'
]
saturl
=
module
.
params
[
'url'
]
user
=
module
.
params
[
'user'
]
pwd
=
module
.
params
[
'pwd'
]
#initialize connection
user
=
""
pwd
=
""
client
=
xmlrpclib
.
Server
(
saturl
,
verbose
=
0
)
session
=
client
.
auth
.
login
(
user
,
pwd
)
...
...
@@ -125,7 +136,7 @@ def main():
if
state
==
'absent'
:
if
not
channelname
in
chans
:
module
.
exit_json
(
changed
=
False
,
msg
=
"
System n
ot subscribed to channel
%
s."
%
channelname
)
module
.
exit_json
(
changed
=
False
,
msg
=
"
N
ot subscribed to channel
%
s."
%
channelname
)
else
:
unsubscribe_channels
(
channelname
,
client
,
session
,
systname
,
sys_id
)
module
.
exit_json
(
changed
=
True
,
msg
=
"Channel
%
s removed"
%
channelname
)
...
...
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