2023-03-30 02:26:00 +00:00
|
|
|
if [[ -f "/etc/os-release" ]]; then
|
|
|
|
source "/etc/os-release"
|
|
|
|
if [[ "${ID}" == "fedora" ]]; then
|
|
|
|
echo "not supported yet"
|
|
|
|
#echo "rpm package"
|
|
|
|
#./package_rpm.sh
|
|
|
|
elif [[ "${ID}" == "ubuntu" ]]; then
|
|
|
|
echo "deb package"
|
|
|
|
./package_deb.sh
|
|
|
|
fi
|
|
|
|
fi
|