forked from pool/obs-service-replace_using_env
e338628f5a
OBS-URL: https://build.opensuse.org/package/show/Virtualization/obs-service-replace_using_env?expand=0&rev=1
18 lines
353 B
Bash
18 lines
353 B
Bash
#!/bin/bash
|
|
|
|
distro=$(rpm --eval '%{?sle_version}:%{?is_opensuse}%{!?is_opensuse:0}')
|
|
case "${distro}" in
|
|
150200:0)
|
|
TAGPREFIX=suse/sles/15.2
|
|
LABELPREFIX=com.suse.kubevirt
|
|
;;
|
|
150300:0)
|
|
TAGPREFIX=suse/sles/15.3
|
|
LABELPREFIX=com.suse.kubevirt
|
|
;;
|
|
*)
|
|
TAGPREFIX=opensuse/tumbleweed
|
|
LABELPREFIX=org.opensuse.kubevirt
|
|
;;
|
|
esac
|