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
b94fde28
Commit
b94fde28
authored
Jun 06, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3133 from Gavitron/devel
quick and dirty bugfix for irc module
parents
16ffac47
561d79b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
+5
-1
library/notification/irc
+5
-1
No files found.
library/notification/irc
View file @
b94fde28
...
...
@@ -76,6 +76,7 @@ local_action: irc port=6669
# IRC module support methods.
#
from
time
import
sleep
import
socket
def
send_msg
(
channel
,
msg
,
server
=
'localhost'
,
port
=
'6667'
,
...
...
@@ -101,10 +102,13 @@ def send_msg(channel, msg, server='localhost', port='6667',
irc
.
connect
(
(
server
,
int
(
port
)
)
)
irc
.
send
(
'NICK
%
s
\r\n
'
%
nick
)
irc
.
send
(
'USER
%
s
%
s
%
s :ansible IRC
\r\n
'
%
(
nick
,
nick
,
nick
))
irc
.
send
(
'JOIN #
%
s
\r\n
'
%
channel
)
time
.
sleep
(
1
)
irc
.
send
(
'JOIN
%
s
\r\n
'
%
channel
)
irc
.
send
(
'PRIVMSG
%
s :
%
s
\r\n
'
%
(
channel
,
message
))
time
.
sleep
(
1
)
irc
.
send
(
'PART
%
s
\r\n
'
%
channel
)
irc
.
send
(
'QUIT
\r\n
'
)
time
.
sleep
(
1
)
irc
.
close
()
# ===========================================
...
...
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