Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Łukasz Nowak
slapos
Commits
fb41ee6f
Commit
fb41ee6f
authored
Sep 21, 2022
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
caddy-frontend: Clean up caddyprofiledummy
parent
2bf872bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
software/caddy-frontend/buildout.hash.cfg
software/caddy-frontend/buildout.hash.cfg
+1
-1
software/caddy-frontend/caddyprofiledummy.py
software/caddy-frontend/caddyprofiledummy.py
+5
-5
No files found.
software/caddy-frontend/buildout.hash.cfg
View file @
fb41ee6f
...
...
@@ -98,7 +98,7 @@ md5sum = f6f72d03af7d9dc29fb4d4fef1062e73
[caddyprofiledeps-dummy]
filename = caddyprofiledummy.py
md5sum =
1c866272ec0ea0c161f0c0d80cb6e584
md5sum =
e82ccdb0b26552a1c88ff523d8fae24a
[profile-kedifa]
filename = instance-kedifa.cfg.in
...
...
software/caddy-frontend/caddyprofiledummy.py
View file @
fb41ee6f
import
caucase.client
import
caucase.utils
import
os
import
ssl
import
sys
import
urllib.
request
,
urllib
.
parse
,
urllib
.
error
import
urllib.error
import
urllib.parse
import
urllib.request
from
cryptography
import
x509
from
cryptography.hazmat.primitives
import
serialization
class
Recipe
(
object
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
pass
...
...
@@ -21,10 +20,11 @@ class Recipe(object):
def
update
(
self
):
return
self
.
install
()
def
validate_netloc
(
netloc
):
# a bit crazy way to validate that the passed parameter is haproxy
# compatible server netloc
parsed
=
urllib
.
parse
.
urlparse
(
'scheme://'
+
netloc
)
parsed
=
urllib
.
parse
.
urlparse
(
'scheme://'
+
netloc
)
if
':'
in
parsed
.
hostname
:
hostname
=
'[%s]'
%
parsed
.
hostname
else
:
...
...
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