File: starch-example.config

package info (click to toggle)
cctools 1%3A7.15.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,008 kB
  • sloc: ansic: 117,215; python: 30,569; cpp: 20,301; sh: 13,834; perl: 4,056; xml: 3,688; makefile: 1,502
file content (27 lines) | stat: -rw-r--r-- 878 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Example of a starch command configuration. 
# Create a self-contained package to run the command `date` using the timezone
# specified in starch-example.env with:
#
# starch -C starch-example.config date.sfx
# ./date.sfx
#

[starch]
# command to execute when executing the resulting starch package
command = date

# comma-separated list of executables to include in the package. If not an
# absolute path, then they musth be found in PATH
executables = /bin/date

# comma-separated list of dynamically linked libraries (e.g. *.so files) to
# include in the package
libraries = 

# comma-separated list of sh files to be sourced before the command's
# execution. Useful to export necessary environment variables.
environments = starch-example.env

# comma-separated list of mappings of PACKAGE_PATH:HOST_PATH of files to include
# in the package.
data = my_data/motd:/etc/motd