You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.4 KiB
79 lines
2.4 KiB
case "${TARGET}" in
|
|
'el6')
|
|
NAME=${NAME:-one-context}
|
|
RELSUFFIX=${RELSUFFIX:-.el6}
|
|
TYPE=${TYPE:-rpm}
|
|
TAGS=${TAGS:-rpm sysv one}
|
|
DEPENDS=${DEPENDS:-util-linux-ng bind-utils cloud-utils-growpart ruby rubygem-json}
|
|
REPLACES=${REPLACES:-cloud-init}
|
|
POSTIN=${POSTINST:-postinstall.one}
|
|
PREUN=${PREUN:-preuninstall.one}
|
|
;;
|
|
|
|
|
|
'el6_ec2')
|
|
NAME=${NAME:-one-context-ec2}
|
|
RELSUFFIX=${RELSUFFIX:-.el6}
|
|
TYPE=${TYPE:-rpm}
|
|
TAGS=${TAGS:-rpm sysv ec2}
|
|
DEPENDS=${DEPENDS:-util-linux-ng bind-utils cloud-utils-growpart ruby rubygem-json}
|
|
REPLACES=${REPLACES:-cloud-init}
|
|
POSTIN=${POSTINST:-postinstall.ec2}
|
|
PREUN=${PREUN:-preuninstall.ec2}
|
|
;;
|
|
|
|
'el7')
|
|
NAME=${NAME:-one-context}
|
|
RELSUFFIX=${RELSUFFIX:-.el7}
|
|
TYPE=${TYPE:-rpm}
|
|
TAGS=${TAGS:-rpm systemd one}
|
|
DEPENDS=${DEPENDS:-util-linux bind-utils cloud-utils-growpart ruby rubygem-json}
|
|
REPLACES=${REPLACES:-cloud-init}
|
|
POSTIN=${POSTINST:-postinstall.one}
|
|
PREUN=${PREUN:-preuninstall.one}
|
|
;;
|
|
|
|
'el7_ec2')
|
|
NAME=${NAME:-one-context-ec2}
|
|
RELSUFFIX=${RELSUFFIX:-.el7}
|
|
TYPE=${TYPE:-rpm}
|
|
TAGS=${TAGS:-rpm sysv ec2}
|
|
DEPENDS=${DEPENDS:-util-linux bind-utils cloud-utils-growpart ruby rubygem-json}
|
|
REPLACES=${REPLACES:-cloud-init}
|
|
POSTIN=${POSTINST:-postinstall.ec2}
|
|
PREUN=${PREUN:-preuninstall.ec2}
|
|
;;
|
|
|
|
'deb')
|
|
NAME=${NAME:-one-context}
|
|
RELSUFFIX=${RELSUFFIX:-}
|
|
TYPE=${TYPE:-deb}
|
|
TAGS=${TAGS:-deb sysv systemd upstart one}
|
|
DEPENDS=${DEPENDS:-util-linux bind9-host cloud-utils ruby python}
|
|
REPLACES=${REPLACES:-cloud-init}
|
|
POSTIN=${POSTINST:-postinstall.one}
|
|
PREUN=${PREUN:-preuninstall.one}
|
|
;;
|
|
|
|
'deb_ec2')
|
|
NAME=${NAME:-one-context-ec2}
|
|
RELSUFFIX=${RELSUFFIX:-}
|
|
TYPE=${TYPE:-deb}
|
|
TAGS=${TAGS:-deb ec2}
|
|
DEPENDS=${DEPENDS:-util-linux bind9-host cloud-utils ruby python}
|
|
REPLACES=${REPLACES:-cloud-init}
|
|
POSTIN=${POSTINST:-postinstall.ec2}
|
|
PREUN=${PREUN:-preuninstall.ec2}
|
|
;;
|
|
|
|
'arch')
|
|
NAME=${NAME:-one-context}
|
|
TYPE=${TYPE:-dir}
|
|
TAGS=${TAGS:-arch one}
|
|
;;
|
|
|
|
*)
|
|
echo "Invalid target ${TARGET}"
|
|
exit 1
|
|
esac
|