summaryrefslogtreecommitdiff
path: root/functions/wrapper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'functions/wrapper.sh')
-rwxr-xr-xfunctions/wrapper.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/functions/wrapper.sh b/functions/wrapper.sh
new file mode 100755
index 000000000..dcc728f8f
--- /dev/null
+++ b/functions/wrapper.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+# wrapper.sh - external command wrappers
+# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
+#
+# 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.
+
+Apt ()
+{
+ case "${LH_APT}" in
+ apt|apt-get)
+ Chroot chroot apt-get ${APT_OPTIONS} ${@}
+ ;;
+
+ aptitude)
+ Chroot chroot aptitude ${APTITUDE_OPTIONS} ${@}
+ ;;
+ esac
+}