Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
07052a25
You need to sign in or sign up before continuing.
Commit
07052a25
authored
Mar 01, 2019
by
Ulrich Sibiller
Committed by
Mike Gabriel
Mar 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nxdialog: allow to provide --parent 0 for testing
Agent PID 0 can be used for testing
parent
acffe15b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
nxdialog
nxdialog/nxdialog
+3
-1
No files found.
nxdialog/nxdialog
View file @
07052a25
...
@@ -234,10 +234,12 @@ def handle_session_action(agentpid, action):
...
@@ -234,10 +234,12 @@ def handle_session_action(agentpid, action):
if
action
==
DISCONNECT
:
if
action
==
DISCONNECT
:
print
(
"Disconnecting from session, sending SIGHUP to
%
s"
%
(
agentpid
))
print
(
"Disconnecting from session, sending SIGHUP to
%
s"
%
(
agentpid
))
if
agentpid
!=
0
:
os
.
kill
(
agentpid
,
signal
.
SIGHUP
)
os
.
kill
(
agentpid
,
signal
.
SIGHUP
)
elif
action
==
TERMINATE
:
elif
action
==
TERMINATE
:
print
(
"Terminating session, sending SIGTERM to process
%
s"
%
(
agentpid
))
print
(
"Terminating session, sending SIGTERM to process
%
s"
%
(
agentpid
))
if
agentpid
!=
0
:
os
.
kill
(
agentpid
,
signal
.
SIGTERM
)
os
.
kill
(
agentpid
,
signal
.
SIGTERM
)
elif
action
is
None
:
elif
action
is
None
:
...
@@ -339,7 +341,7 @@ class NxDialogProgram(object):
...
@@ -339,7 +341,7 @@ class NxDialogProgram(object):
if
dlgtype
in
(
DLG_TYPE_PULLDOWN
,
if
dlgtype
in
(
DLG_TYPE_PULLDOWN
,
DLG_TYPE_YESNOSUSPEND
,
DLG_TYPE_YESNOSUSPEND
,
DLG_TYPE_YESNO
)
and
not
self
.
options
.
agentpid
:
DLG_TYPE_YESNO
)
and
self
.
options
.
agentpid
is
None
:
sys
.
stderr
.
write
(
"Agent pid not supplied via --parent
\n
"
)
sys
.
stderr
.
write
(
"Agent pid not supplied via --parent
\n
"
)
sys
.
exit
(
EXIT_FAILURE
)
sys
.
exit
(
EXIT_FAILURE
)
...
...
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