diff options
author | dancer <dancer> | 2005-03-04 04:49:42 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-03-04 04:49:42 +0000 |
commit | ea60559e712e73a94159e9eaad0e841f3a0f1010 (patch) | |
tree | dd2685aaf2395a1cdcac2bd16c7ca0097e7854a6 /pbuilder-checkparams | |
parent | fe8b58c821ae8c64663d50f528477ed3cdcf930e (diff) | |
download | pbuilder-ea60559e712e73a94159e9eaad0e841f3a0f1010.tar pbuilder-ea60559e712e73a94159e9eaad0e841f3a0f1010.tar.gz |
+2005-03-04 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder: apply patch frp, Danilo to save aptcache on pbuilder login.
+ Apply similar change to pbuilder execute.
+ 271600
+
+ * pbuilder.8:
+ * pbuilder-checkparams:
+ * pbuilder-modules: support --aptcache option
+ thanks: Danilo Piazzalunga <danilopiazza@libero.it>
+ 295766
+
+ * Cleaned build dir for pbuilder-uml #297100
+
+ * pbuilder-modules (pbuilder-options): document save-after-login/exec
+ flag in --help output. #296672
+
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-x | pbuilder-checkparams | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 2829c6e..33ffd24 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -92,6 +92,19 @@ while [ -n "$1" ]; do fi shift; shift; ;; + --aptcache) + if [ -n "$2" ]; then + if [ -d "$2" ]; then + APTCACHE=$(readlink -f "$2"); + else + echo "E: Directory $2 does not exist" >&2 + exit 1 + fi + else + APTCACHE= + fi + shift; shift; + ;; --removepackages) REMOVEPACKAGES="$2"; shift; shift; |