2007-09-23 08:04:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2015-01-04 18:05:39 -01:00
|
|
|
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
2012-07-29 23:59:00 +00:00
|
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
2010-09-02 11:12:37 +00:00
|
|
|
## This is free software, and you are welcome to redistribute it
|
|
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
|
|
|
|
Check_package ()
|
|
|
|
{
|
2015-01-04 16:08:09 -01:00
|
|
|
CHROOT="${1}"
|
|
|
|
FILE="${2}"
|
|
|
|
PACKAGE="${3}"
|
2007-09-23 08:04:51 +00:00
|
|
|
|
2015-01-04 16:08:09 -01:00
|
|
|
Check_installed "${CHROOT}" "${FILE}" "${PACKAGE}"
|
2007-09-23 08:05:15 +00:00
|
|
|
|
2017-08-28 13:14:34 +00:00
|
|
|
if [ "${INSTALL_STATUS}" -ne 0 ]
|
|
|
|
then
|
2018-04-04 19:26:39 +00:00
|
|
|
if [ "${LB_BUILD_WITH_CHROOT}" != "false" ] && [ "${CHROOT}" = "chroot" ]
|
2017-08-28 13:14:34 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
_LB_PACKAGES="${_LB_PACKAGES} ${PACKAGE}"
|
2017-08-28 13:14:34 +00:00
|
|
|
else
|
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
|
2017-08-28 13:14:34 +00:00
|
|
|
fi
|
|
|
|
fi
|
2007-09-23 08:04:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Install_package ()
|
|
|
|
{
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${_LB_PACKAGES}" ] && [ "${LB_BUILD_WITH_CHROOT}" != "false" ]
|
2007-09-23 08:04:51 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_APT}" in
|
2007-09-23 08:04:51 +00:00
|
|
|
apt|apt-get)
|
2010-09-07 13:11:20 +00:00
|
|
|
Chroot chroot "apt-get install -o APT::Install-Recommends=false ${APT_OPTIONS} ${_LB_PACKAGES}"
|
2007-09-23 08:04:51 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
aptitude)
|
2010-09-07 13:11:20 +00:00
|
|
|
Chroot chroot "aptitude install --without-recommends ${APTITUDE_OPTIONS} ${_LB_PACKAGES}"
|
2007-09-23 08:04:51 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
Remove_package ()
|
|
|
|
{
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${_LB_PACKAGES}" ] && [ "${LB_BUILD_WITH_CHROOT}" != "false" ]
|
2007-09-23 08:04:51 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_APT}" in
|
2007-09-23 08:04:51 +00:00
|
|
|
apt|apt-get)
|
2010-09-07 13:11:20 +00:00
|
|
|
Chroot chroot "apt-get remove --purge ${APT_OPTIONS} ${_LB_PACKAGES}"
|
2007-09-23 08:04:51 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
aptitude)
|
2010-09-07 13:11:20 +00:00
|
|
|
Chroot chroot "aptitude purge ${APTITUDE_OPTIONS} ${_LB_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 ()
|
|
|
|
{
|
2015-01-04 16:08:09 -01:00
|
|
|
CHROOT="${1}"
|
|
|
|
FILE="${2}"
|
|
|
|
PACKAGE="${3}"
|
2007-09-23 08:05:17 +00:00
|
|
|
|
2015-01-04 16:08:09 -01:00
|
|
|
if [ "${LB_BUILD_WITH_CHROOT}" = "true" ] && [ "${CHROOT}" = "chroot" ]
|
|
|
|
then
|
|
|
|
if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
|
|
|
|
then
|
|
|
|
INSTALL_STATUS=0
|
|
|
|
else
|
|
|
|
INSTALL_STATUS=1
|
|
|
|
fi
|
|
|
|
else
|
2020-03-10 20:58:23 -01:00
|
|
|
if [ $(which dpkg-query) ]
|
2015-01-04 16:08:09 -01:00
|
|
|
then
|
2016-11-28 20:50:42 -01:00
|
|
|
if 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
|
2015-01-04 16:08:09 -01:00
|
|
|
else
|
|
|
|
if [ ! -e "${FILE}" ]
|
2007-09-23 08:05:17 +00:00
|
|
|
then
|
2015-01-04 16:08:09 -01:00
|
|
|
INSTALL_STATUS=2
|
2007-09-23 08:05:17 +00:00
|
|
|
else
|
2015-01-04 16:08:09 -01:00
|
|
|
INSTALL_STATUS=0
|
2007-09-23 08:05:17 +00:00
|
|
|
fi
|
2015-01-04 16:08:09 -01:00
|
|
|
fi
|
|
|
|
fi
|
2007-09-23 08:05:17 +00:00
|
|
|
}
|
|
|
|
|