mirror of
https://git.rockylinux.org/rocky/pungi-rocky.git
synced 2024-11-09 23:01:24 +00:00
18 lines
260 B
Python
18 lines
260 B
Python
#!/usr/bin/env python3
|
|
|
|
import json
|
|
|
|
remove_these = [
|
|
'rhc',
|
|
'insights-client',
|
|
'redhat-cloud-client-configuration',
|
|
'lorax-templates-rhel'
|
|
]
|
|
|
|
arches = [
|
|
'x86_64',
|
|
'aarch64',
|
|
'ppc64le',
|
|
's390x'
|
|
]
|