Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
SlapOS Develop
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
Eric Zheng
SlapOS Develop
Commits
6a7e0d3d
Commit
6a7e0d3d
authored
Jul 01, 2021
by
Eric Zheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove font configuration from headless-chromium software release
parent
50131f18
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
45 deletions
+15
-45
software/headless-chromium/buildout.hash.cfg
software/headless-chromium/buildout.hash.cfg
+4
-4
software/headless-chromium/instance.cfg.in
software/headless-chromium/instance.cfg.in
+1
-5
software/headless-chromium/instance_headless-chromium.cfg.in
software/headless-chromium/instance_headless-chromium.cfg.in
+3
-18
software/headless-chromium/software.cfg
software/headless-chromium/software.cfg
+3
-9
software/headless-chromium/templates/launcher.in
software/headless-chromium/templates/launcher.in
+4
-9
No files found.
software/headless-chromium/buildout.hash.cfg
View file @
6a7e0d3d
[template-cfg]
filename = instance.cfg.in
md5sum =
0a2a190d4b392a4b101fdd53baf73c35
md5sum =
39b836260a86fde229f49d83c09c137d
[instance-headless-chromium]
_update_hash_filename_ = instance_headless-chromium.cfg.in
md5sum =
046a3e363f679f43ecf94313479462f5
md5sum =
a4018b6bfd3c74386ed0d16edcd00880
[template
_
launcher]
[template
-
launcher]
_update_hash_filename_ = templates/launcher.in
md5sum =
b03e36cfa43a82fac297e12013899bfc
md5sum =
4a4d9e6a2dbb347eba83a37817d0af63
software/headless-chromium/instance.cfg.in
View file @
6a7e0d3d
...
...
@@ -8,12 +8,8 @@ offline = true
[profile-common]
dash_location = {{ dash_location }}
liberation_fonts_location = {{ liberation_fonts_location }}
fontconfig_location = {{ fontconfig_location }}
chromium_location = {{ chromium_location }}
chromium_wrapper = {{ chromium_wrapper }}
template_launcher = {{ template_launcher_target }}
runtime_libraries = {{ runtime_libraries }}
template_fontconfig = {{ template_fontconfig }}
[instance-headless-chromium]
recipe = slapos.recipe.template:jinja2
...
...
software/headless-chromium/instance_headless-chromium.cfg.in
View file @
6a7e0d3d
...
...
@@ -7,41 +7,26 @@ eggs-directory = {{ buildout['eggs-directory'] }}
develop-eggs-directory = {{ buildout['develop-eggs-directory'] }}
offline = true
# Create the directories that we need. We just have:
# /etc/service
# /etc/fonts
# /tmp/fontconfig-cache
# Create the directories that we need. We just have /etc/service
[directory]
recipe = slapos.cookbook:mkdirectory
home = ${buildout:directory}
etc = ${:home}/etc
tmp = ${:home}/tmp
[basedirectory]
recipe = slapos.cookbook:mkdirectory
service = ${directory:etc}/service
fontconfig_cache = ${directory:tmp}/fontconfig-cache
[headless-chromium]
ip = ${slap-network-information:global-ipv6}
port = 8081
url = https://example.com
remote_debug_url = http://[${:ip}]:${:port}
bin_chromium = {{ parameter_list['chromium_location'] }}/headless-chromium
chromium_wrapper = {{ parameter_list['chromium_wrapper'] }}
bin_launcher = ${basedirectory:service}/launcher
bin_shell = {{ parameter_list['dash_location'] }}/bin/dash
fontconfig_target = ${directory:etc}/fonts.conf
[default-fonts]
recipe = slapos.recipe.template:jinja2
template = {{ parameter_list['template_fontconfig'] }}
rendered = ${headless-chromium:fontconfig_target}
context =
key fonts {{ parameter_list['liberation_fonts_location'] }}
key includes {{ parameter_list['fontconfig_location'] }}/etc/fonts/conf.d
key cachedir ${basedirectory:fontconfig_cache}
[launcher]
recipe = slapos.recipe.template:jinja2
template = {{ parameter_list['template_launcher'] }}
...
...
software/headless-chromium/software.cfg
View file @
6a7e0d3d
...
...
@@ -4,8 +4,6 @@ extends =
../../stack/slapos.cfg
../../component/headless-chromium/buildout.cfg
../../component/dash/buildout.cfg
../../component/fonts/buildout.cfg
../../component/fontconfig/buildout.cfg
parts =
slapos-cookbook
...
...
@@ -19,14 +17,10 @@ filename = instance.cfg.in
mode = 0644
context =
section buildout buildout
key chromium_location chromium:location
key dash_location dash:location
key liberation_fonts_location liberation-fonts:location
key fontconfig_location fontconfig:location
key template_launcher_target template_launcher:target
key chromium_wrapper chromium-wrapper:location
key template_launcher_target template-launcher:target
key template_instance_headless_chromium_target instance-headless-chromium:target
key template_fontconfig template-fonts-conf:output
key runtime_libraries chromium:libraries
[download-base]
recipe = slapos.recipe.build:download
...
...
@@ -36,5 +30,5 @@ mode = 0644
[instance-headless-chromium]
<= download-base
[template
_
launcher]
[template
-
launcher]
<= download-base
software/headless-chromium/templates/launcher.in
View file @
6a7e0d3d
#! {{ param_chromium_headless['bin_shell'] }}
# Load runtime dependencies.
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:{{ param_chromium_headless['runtime_libraries'] }}
# If FONTCONFIG_FILE is not set, Chromium will complain on startup.
FONTCONFIG_FILE={{ param_chromium_headless['fontconfig_target'] }}
# Run headless Chromeium
exec {{ param_chromium_headless['bin_chromium'] }} \
--remote-debugging-port={{ param_chromium_headless['port'] }}
# Run headless Chromium
exec {{ param_chromium_headless['chromium_wrapper'] }} \
--remote-debugging-port={{ param_chromium_headless['port'] }} \
param_chromium_headless['url']
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