mohanboddu / centos / pungi-centos

Forked from centos/pungi-centos 4 years ago
Clone
Blob Blame History Raw
filter_packages = [
    ("^(BaseOS|AppStream)$", {
        "*": [
            "python36",
        ]
    }),

    ("^BaseOS$", {
        "*": [
            "compat-openssl10-devel",
            "compat-openssl10-pkcs11-helper",
            "openldap-servers-debuginfo",
            "ongres-scram",
        ]
    }),
]

additional_packages = [
    ("^AppStream$", {
        "*": [
            "langpacks-*",
        ]
    }),

    ("^AppStream$", {
        "x86_64": [

            "libreoffice-langpack-*",
            "libreoffice-help-*",
        ]
    }),

    ("^BaseOS$", {
        "*": [
            "kernel-doc",
        ]
    }),
]