Commit 471c7e3e authored by Lu Xu's avatar Lu Xu 👀

software/theia: add request script template

parent 820332c7
......@@ -15,7 +15,7 @@
[instance]
filename = instance.cfg.in
md5sum = 2b22f71b148ac7fa7ec29a5165e39d30
md5sum = e56a6722e4f0bc958f6b61f13174e852
[yarn.lock]
filename = yarn.lock
......
......@@ -7,6 +7,7 @@ theia-environment-parts =
slapos-repository
runner-link
settings.json
request-script
theia-parts =
frontend-reload
......@@ -525,3 +526,18 @@ template =
recipe = slapos.cookbook:symbolic.link
target-directory = $${directory:project}
link-binary = $${directory:runner}
[request-script]
recipe = slapos.recipe.template:jinja2
rendered = $${directory:project}/$${:_buildout_section_name_}.sh
mode = 0700
template =
inline:#!/bin/sh
software_name=html5as-base #replace the software name
software_release_uri=~/srv/project/slapos/software/$software_name/software.cfg
# slapos supply is used to add the software to the software list to be supplied to a node.
slapos supply $software_release_uri slaprunner
# slapos request the allocation of an instance to the master.
# slapos request also gets status and parameters of the instance if it has any
# (slapos request is meant to be run multiple time until you get the status).
slapos request $software_name'_1' $software_release_uri
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment