diff options
author | dancer <dancer> | 2004-10-31 11:05:35 +0000 |
---|---|---|
committer | dancer <dancer> | 2004-10-31 11:05:35 +0000 |
commit | d0e81d2fc7da900898cb9732bb92ce53e526ffba (patch) | |
tree | f1d751c39b2a9975f3bce508eb5d8c3f1d2010bf /pbuilder-user-mode-linux | |
parent | 98068b6f01921ac004e59303fa51bda1e22c06ac (diff) | |
download | pbuilder-d0e81d2fc7da900898cb9732bb92ce53e526ffba.tar pbuilder-d0e81d2fc7da900898cb9732bb92ce53e526ffba.tar.gz |
+2004-10-31 Junichi Uekawa <dancer@debian.org>
+
+ * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): add notes on
+ BUILRESULTUID and SUDO interaction.
+
+ * pbuilder-buildpackage (PACKAGENAME): move around buildresult dir creation before pkgname logfile creation.
+
+ * pbuilder.8: add documentation for --save-after-login/exec option.
+
+ * pbuilder: execute and login with --save-after-login/exec option.
+
+ * pbuilder-user-mode-linux.1: add notes that uml-nocow is effective for exec and login.
+
+ * pbuilder-uml-checkparams (UML_SAVE_AFTER_LOGIN): add UML_NOCOW for exec
+
+ * pbuilder-checkparams (SAVE_AFTER_LOGIN): --save-after-login/exec command-option.
+
+ * pdebuild-user-mode-linux.1: add notes that the option will override
+ pbuilder option.
+
+ * pdebuild.1: add notes that the option will override pbuilder option
+
+ * pdebuild-user-mode-linux: ditto.
+
+ * pdebuild: override --debbbuildopts in pbuilder option when DEBBUILDOPTS is available and for non-internal mode.
+
Diffstat (limited to 'pbuilder-user-mode-linux')
-rwxr-xr-x | pbuilder-user-mode-linux | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux index 7a8b28d..19dc2a9 100755 --- a/pbuilder-user-mode-linux +++ b/pbuilder-user-mode-linux @@ -168,8 +168,12 @@ case "${OPERATION}" in operate_uml login ;; execute) - usecow - EXTRACLEANUP=cleancow + if [ "${UML_LOGIN_NOCOW}" = "yes" ]; then + echo " -> Not using COW filesystem for login session, modifications to this session will persist" + else + usecow + EXTRACLEANUP=cleancow + fi shift; UML_EXECUTE_EXTRAOPT="${UML_EXECUTE_EXTRAOPT} $@" operate_uml execute |