Skip to content

Commit

Permalink
data/config: Add reference configuration file
Browse files Browse the repository at this point in the history
The file format is TOML[0] but the file extension is .conf to follow the
convention set by Podman.

#828
#851
  • Loading branch information
HarryMichal authored and debarshiray committed Jul 23, 2021
1 parent 5824f0a commit ffdfaa7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions data/config/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
install_data(
'toolbox.conf',
install_dir: join_paths(get_option('sysconfdir'), 'containers'),
)
17 changes: 17 additions & 0 deletions data/config/toolbox.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[general]
# Create a toolbox container for a different operating system distro than the
# host. Cannot be used with 'image'.
## distro = "fedora"

# Create a toolbox container for a different operating system release than the
# host. Cannot be used with 'image'.
## release = "33"

# Change the name of the image used to create the toolbox container. This is
# useful for creating containers from custom-built images. Cannot be used with
# 'distro' or 'release'.
#
# If the name does not contain a registry, the local image storage will be
# consulted, and if it's not present there then it will be pulled from a
# suitable remote registry.
## image = "registry.fedoraproject.org/fedora-toolbox:34"
1 change: 1 addition & 0 deletions data/meson.build
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
subdir('config')
subdir('tmpfiles.d')

0 comments on commit ffdfaa7

Please sign in to comment.