fix: don't attempt to overwrite influxdb installs (#493) (#494)

* fix: don't attempt to overwrite influxdb installs

* fix: don't attempt to overwrite influxdb installs
This commit is contained in:
Jeffrey Smith II 2023-04-06 12:29:54 -04:00 committed by GitHub
parent a5a89b41f6
commit af76e69fa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,15 +80,6 @@ fpm_wrapper()
esac
fi
case ${1} in
rpm)
REPLACES='influxdb < 2.1.0'
;;
deb)
REPLACES='influxdb (<< 2.1.0)'
;;
esac
fpm \
--log error \
`# package description` \
@ -98,7 +89,6 @@ fpm_wrapper()
--url https://influxdata.com \
--maintainer support@influxdb.com \
--license MIT \
--replaces "${REPLACES}" \
`# package configuration` \
--input-type dir \
--output-type "${1}" \