2008-02-21 18:03:57 -01: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.
|
|
|
|
|
2008-02-21 18:03:57 -01:00
|
|
|
|
|
|
|
Apt ()
|
|
|
|
{
|
2010-12-05 12:06:12 -01:00
|
|
|
CHROOT="${1}"
|
|
|
|
shift
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_APT}" in
|
2008-02-21 18:03:57 -01:00
|
|
|
apt|apt-get)
|
2010-12-05 12:06:12 -01:00
|
|
|
Chroot ${CHROOT} apt-get ${APT_OPTIONS} ${@}
|
2008-02-21 18:03:57 -01:00
|
|
|
;;
|
|
|
|
|
|
|
|
aptitude)
|
2010-12-05 12:06:12 -01:00
|
|
|
Chroot ${CHROOT} aptitude ${APTITUDE_OPTIONS} ${@}
|
2008-02-21 18:03:57 -01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|