2007-09-23 08:04:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# packages.sh - handle packages installation
|
2010-03-04 11:43:04 -01:00
|
|
|
# Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
|
2007-09-23 08:04:51 +00:00
|
|
|
#
|
|
|
|
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
|
|
# This is free software, and you are welcome to redistribute it
|
|
|
|
# under certain conditions; see COPYING for details.
|
|
|
|
|
|
|
|
Check_package ()
|
|
|
|
{
|
2007-09-23 08:05:16 +00:00
|
|
|
FILE="${1}"
|
2007-09-23 08:04:51 +00:00
|
|
|
PACKAGE="${2}"
|
|
|
|
|
2007-09-23 08:05:17 +00:00
|
|
|
Check_installed "${FILE}" "${PACKAGE}"
|
2007-09-23 08:05:15 +00:00
|
|
|
|
2007-09-23 08:05:17 +00:00
|
|
|
case "${INSTALL_STATUS}" in
|
|
|
|
1)
|
2008-08-25 10:01:37 +00:00
|
|
|
_LH_PACKAGES="${_LH_PACKAGES} ${PACKAGE}"
|
2007-09-23 08:05:17 +00:00
|
|
|
;;
|
2007-09-23 08:05:16 +00:00
|
|
|
|
2007-09-23 08:05:17 +00:00
|
|
|
2)
|
2008-08-11 20:28:54 +00:00
|
|
|
Echo_error "You need to install %s on your host system." "${PACKAGE}"
|
2007-09-23 08:05:17 +00:00
|
|
|
exit 1
|
2007-09-23 08:05:15 +00:00
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:04:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Install_package ()
|
|
|
|
{
|
2010-05-21 08:55:55 +00:00
|
|
|
if [ -n "${_LH_PACKAGES}" ] && [ "${LH_BUILD_WITH_CHROOT}" != "false" ]
|
2007-09-23 08:04:51 +00:00
|
|
|
then
|
|
|
|
case "${LH_APT}" in
|
|
|
|
apt|apt-get)
|
2009-06-04 11:57:47 +00:00
|
|
|
Chroot chroot "apt-get install -o APT::Install-Recommends=false ${APT_OPTIONS} ${_LH_PACKAGES}"
|
2007-09-23 08:04:51 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
aptitude)
|
2009-06-04 11:57:47 +00:00
|
|
|
Chroot chroot "aptitude install --without-recommends ${APTITUDE_OPTIONS} ${_LH_PACKAGES}"
|
2007-09-23 08:04:51 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
Remove_package ()
|
|
|
|
{
|
2010-05-21 08:55:55 +00:00
|
|
|
if [ -n "${_LH_PACKAGES}" ] && [ "${LH_BUILD_WITH_CHROOT}" != "false" ]
|
2007-09-23 08:04:51 +00:00
|
|
|
then
|
|
|
|
case "${LH_APT}" in
|
|
|
|
apt|apt-get)
|
2009-06-04 11:57:47 +00:00
|
|
|
Chroot chroot "apt-get remove --purge ${APT_OPTIONS} ${_LH_PACKAGES}"
|
2007-09-23 08:04:51 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
aptitude)
|
2009-06-04 11:57:47 +00:00
|
|
|
Chroot chroot "aptitude purge ${APTITUDE_OPTIONS} ${_LH_PACKAGES}"
|
2007-09-23 08:04:51 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
2007-09-23 08:05:17 +00:00
|
|
|
|
|
|
|
# Check_installed
|
|
|
|
# uses as return value global var INSTALL_STATUS
|
|
|
|
# INSTALL_STATUS : 0 if package is installed
|
|
|
|
# 1 if package isn't installed and we're in an apt managed system
|
|
|
|
# 2 if package isn't installed and we aren't in an apt managed system
|
|
|
|
Check_installed ()
|
|
|
|
{
|
|
|
|
FILE="${1}"
|
|
|
|
PACKAGE="${2}"
|
|
|
|
|
2010-05-21 08:55:55 +00:00
|
|
|
case "${LH_BUILD_WITH_CHROOT}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
true)
|
2008-10-28 14:44:06 -01:00
|
|
|
if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
|
2007-09-23 08:05:17 +00:00
|
|
|
then
|
|
|
|
INSTALL_STATUS=0
|
|
|
|
else
|
|
|
|
INSTALL_STATUS=1
|
|
|
|
fi
|
|
|
|
;;
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2007-09-23 08:05:17 +00:00
|
|
|
if which dpkg-query > /dev/null 2>&1
|
|
|
|
then
|
2008-10-28 14:44:06 -01:00
|
|
|
if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
|
2007-09-23 08:05:17 +00:00
|
|
|
then
|
|
|
|
INSTALL_STATUS=0
|
|
|
|
else
|
|
|
|
INSTALL_STATUS=1
|
|
|
|
fi
|
|
|
|
else
|
2008-01-15 06:25:29 -01:00
|
|
|
FILE="$(echo ${FILE} | sed -e 's|chroot||')"
|
2007-09-23 08:05:17 +00:00
|
|
|
|
|
|
|
if [ ! -e "${FILE}" ]
|
|
|
|
then
|
|
|
|
INSTALL_STATUS=2
|
|
|
|
else
|
|
|
|
INSTALL_STATUS=0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|