You need to find: (in get_plat_tag)
Quote:
grep "DISTRIB_RELEASE=6" /etc/lsb-release > /dev/null 2>&1
if [ $? = 0 ]; then
echo "6${i}"
exit 0
else
|
You can then change it to:
Quote:
grep "DISTRIB_RELEASE=8" /etc/lsb-release > /dev/null 2>&1
if [ $? = 0 ]; then
echo "6${i}"
exit 0
else
|
And hopefully that should work.
If you get a message like this:
Quote:
You appear to be installing packages on a platform different
than the platform for which they were built.
This platform is UBUNTU6
Packages found: UBUNTU7
|
You would need to change:
"DISTRIB_RELEASE=7" to "DISTRIB_RELEASE=8"
I'm not sure if you'd ever need that, I don't know much about different installs.