Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos
Commits
a0611045
Commit
a0611045
authored
Oct 24, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
2a8fb1e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
software/ors-amarisoft/buildout.hash.cfg
software/ors-amarisoft/buildout.hash.cfg
+1
-1
software/ors-amarisoft/ru/libinstance.jinja2.cfg
software/ors-amarisoft/ru/libinstance.jinja2.cfg
+9
-3
No files found.
software/ors-amarisoft/buildout.hash.cfg
View file @
a0611045
...
@@ -28,7 +28,7 @@ md5sum = 07e6e578c88062a15d9bb4ceae27d5fa
...
@@ -28,7 +28,7 @@ md5sum = 07e6e578c88062a15d9bb4ceae27d5fa
[ru_libinstance.jinja2.cfg]
[ru_libinstance.jinja2.cfg]
_update_hash_filename_ = ru/libinstance.jinja2.cfg
_update_hash_filename_ = ru/libinstance.jinja2.cfg
md5sum =
63701da67c30199ec7b7b2743b7cdfe4
md5sum =
5f7e4aeace6645b3e5cf12c263049240
[ru_sdr_libinstance.jinja2.cfg]
[ru_sdr_libinstance.jinja2.cfg]
_update_hash_filename_ = ru/sdr/libinstance.jinja2.cfg
_update_hash_filename_ = ru/sdr/libinstance.jinja2.cfg
...
...
software/ors-amarisoft/ru/libinstance.jinja2.cfg
View file @
a0611045
...
@@ -84,7 +84,15 @@ addr = {{ slap_configuration['tap-ipv6-addr'] }}
...
@@ -84,7 +84,15 @@ addr = {{ slap_configuration['tap-ipv6-addr'] }}
[vtap.{{ tap }}]
[vtap.{{ tap }}]
recipe = slapos.recipe.build
recipe = slapos.recipe.build
init =
init =
tapsplit = __import__('{{ ru_tapsplit }}')
import types
def readfile(path):
with open(path) as f:
return f.read()
# ~ import tapsplit
tapsplit = types.ModuleType('tapsplit')
exec(readfile('{{ ru_tapsplit }}'), tapsplit.__dict__)
net = tapsplit.ifnet6('{{ tap }}')
net = tapsplit.ifnet6('{{ tap }}')
options['network'] = str(net)
options['network'] = str(net)
...
@@ -108,8 +116,6 @@ init =
...
@@ -108,8 +116,6 @@ init =
{#- go through all RUs and for each RU emit generic promises and invoke
{#- go through all RUs and for each RU emit generic promises and invoke
RU-specific buildout handler #}
RU-specific buildout handler #}
{%- for ru_ref, iru in iru_dict|dictsort %}
{%- for ru_ref, iru in iru_dict|dictsort %}
...
...
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