forked from coreos/fedora-coreos-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.yaml
32 lines (27 loc) · 1.12 KB
/
manifest.yaml
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
28
29
30
31
32
ref: fedora/${basearch}/coreos/testing-devel
include: manifests/fedora-coreos.yaml
releasever: "31"
rojig:
license: MIT
name: fedora-coreos
summary: Fedora CoreOS testing-devel
repos:
- fedora-coreos-pool
# these repos are there to make it easier to add new packages to the OS and to
# use `cosa fetch --update-lockfile`; but note that all package versions are
# still pinned
- fedora
- fedora-updates
- fedora-modular
- fedora-updates-modular
add-commit-metadata:
fedora-coreos.stream: testing-devel
postprocess:
# Disable Zincati and fedora-coreos-pinger on non-production streams
# https://github.com/coreos/fedora-coreos-tracker/issues/163
- |
#!/usr/bin/env bash
set -xeuo pipefail
mkdir -p /etc/fedora-coreos-pinger/config.d /etc/zincati/config.d
echo -e '# https://github.com/coreos/fedora-coreos-tracker/issues/163\nreporting.enabled = false' > /etc/fedora-coreos-pinger/config.d/90-disable-on-non-production-stream.toml
echo -e '# https://github.com/coreos/fedora-coreos-tracker/issues/163\nupdates.enabled = false' > /etc/zincati/config.d/90-disable-on-non-production-stream.toml