More work in progress.
[distorted-chroot] / etc / schroot-scripts / 51chrootenv
diff --git a/etc/schroot-scripts/51chrootenv b/etc/schroot-scripts/51chrootenv
new file mode 100755 (executable)
index 0000000..797b5d3
--- /dev/null
@@ -0,0 +1,33 @@
+#! /bin/sh -e
+###
+### Write the chroot environment variables to a file.
+###
+### (c) 2018 Mark Wooding
+###
+
+###----- Licensing notice ---------------------------------------------------
+###
+### This file is part of the distorted.org.uk chroot maintenance tools.
+###
+### distorted-chroot is free software: you can redistribute it and/or
+### modify it under the terms of the GNU General Public License as
+### published by the Free Software Foundation; either version 2 of the
+### License, or (at your option) any later version.
+###
+### distorted-chroot is distributed in the hope that it will be useful,
+### but WITHOUT ANY WARRANTY; without even the implied warranty of
+### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+### General Public License for more details.
+###
+### You should have received a copy of the GNU General Public License
+### along with distorted-chroot.  If not, write to the Free Software
+### Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+### USA.
+
+### Otherwise this useful information gets lost.
+
+case "$1" in
+  setup-start)
+    env | sed -n '/^CHROOT_/s///p' | sort >"$CHROOT_PATH/etc/schroot.info"
+    ;;
+esac