Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos-caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Guillaume Hervier
slapos-caddy
Commits
b6278767
Commit
b6278767
authored
Sep 20, 2013
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sshkeys_authority: watch files with with sleep loop (no inotifyx)
parent
6ecd82c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
slapos/recipe/sshkeys_authority.py
slapos/recipe/sshkeys_authority.py
+12
-1
No files found.
slapos/recipe/sshkeys_authority.py
View file @
b6278767
...
...
@@ -31,7 +31,18 @@ import subprocess
import
re
from
slapos.recipe.librecipe
import
GenericBaseRecipe
from
slapos.recipe.librecipe.inotify
import
subfiles
def
subfiles
(
d
):
import
time
ret
=
set
()
while
True
:
for
f
in
os
.
listdir
(
d
):
if
not
f
in
ret
:
yield
os
.
path
.
join
(
d
,
f
)
ret
.
add
(
f
)
time
.
sleep
(
2
)
# This authority only works with dropbear sshkey generator
def
sshkeys_authority
(
args
):
...
...
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