diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-10-07 07:42:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 07:42:58 +0200 |
commit | 3f16f939fb6ffcf6e65990d74827a7bdd4d10d6a (patch) | |
tree | 5f510afa6828775208bcc010323ab4297afa5e30 /data/defaults.toml | |
parent | 262183c6a6974f8ef36f91549175927d27ad4f28 (diff) | |
parent | e7ac78de4947ebd5600c716832012585c006c41f (diff) | |
download | vyos-build-3f16f939fb6ffcf6e65990d74827a7bdd4d10d6a.tar.gz vyos-build-3f16f939fb6ffcf6e65990d74827a7bdd4d10d6a.zip |
Merge pull request #257 from dmbaturin/T3664-flavors
T3664: initial implementation of the build flavor system
Diffstat (limited to 'data/defaults.toml')
-rw-r--r-- | data/defaults.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/data/defaults.toml b/data/defaults.toml new file mode 100644 index 00000000..8710f0ca --- /dev/null +++ b/data/defaults.toml @@ -0,0 +1,21 @@ +build_type = "development" + +architecture = "amd64" + +debian_distribution = "bullseye" + +debian_mirror = "http://deb.debian.org/debian" +debian_security_mirror = "http://deb.debian.org/debian-security" + +vyos_mirror = "http://dev.packages.vyos.net/repositories/current" + +vyos_branch = "current" +release_train = "current" + +kernel_version = "5.15.72" + +additional_repositories = [ + "deb [arch=amd64] https://repo.saltproject.io/py3/debian/11/amd64/3004 bullseye main", + "deb [arch=amd64] http://repo.powerdns.com/debian bullseye-rec-45 main" +] + |