summaryrefslogtreecommitdiff
path: root/helpers/lh_patchchroot
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/lh_patchchroot')
-rwxr-xr-xhelpers/lh_patchchroot18
1 files changed, 18 insertions, 0 deletions
diff --git a/helpers/lh_patchchroot b/helpers/lh_patchchroot
new file mode 100755
index 0000000..ae99997
--- /dev/null
+++ b/helpers/lh_patchchroot
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# lh_patchchroot.sh <action>
+
+# Some maintainer scripts can detect if they are in a chrooted system.
+# Therefore, we create the needed file.
+
+case "${1}" in
+ apply)
+ # Create chroot file
+ echo "debian-live" > "${LIVE_CHROOT}"/etc/debian_chroot
+ ;;
+
+ deapply)
+ # Remove chroot file
+ rm -f "${LIVE_CHROOT}"/etc/debian_chroot
+ ;;
+esac