Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-module-privacyidea-pam
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Eugene Omelyanovich
python-module-privacyidea-pam
Commits
cb844838
Commit
cb844838
authored
Mar 02, 2016
by
Brandon Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support other ssh-type commands via symlinking
parent
4d4fc71c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
ssh-u2f.py
ssh-u2f.py
+6
-1
No files found.
ssh-u2f.py
View file @
cb844838
...
...
@@ -24,7 +24,12 @@ def winch_handler(signum, frame):
signal
.
signal
(
signal
.
SIGWINCH
,
winch_handler
)
ssh
=
pexpect
.
spawn
(
"ssh"
,
sys
.
argv
[
1
:])
try
:
command
=
os
.
path
.
splitext
(
os
.
path
.
basename
(
__file__
))[
0
]
.
split
(
"-"
)[
0
]
except
:
command
=
None
ssh
=
pexpect
.
spawn
(
command
or
"ssh"
,
sys
.
argv
[
1
:])
winch_handler
(
None
,
None
)
index
=
-
1
...
...
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