diff options
author | dancer <dancer> | 2003-07-02 15:23:30 +0000 |
---|---|---|
committer | dancer <dancer> | 2003-07-02 15:23:30 +0000 |
commit | 6c7e5767167a530384bb457aa6468c7452de47fe (patch) | |
tree | 0b5bafacd2dcc38e9759f1df4c36c07366c31b86 /pbuilder-user-mode-linux | |
parent | 5ccb488a4975abb620bea81b46bd5770a7347226 (diff) | |
download | pbuilder-6c7e5767167a530384bb457aa6468c7452de47fe.tar pbuilder-6c7e5767167a530384bb457aa6468c7452de47fe.tar.gz |
patch user-mode-linux to use --configfile option
Diffstat (limited to 'pbuilder-user-mode-linux')
-rwxr-xr-x | pbuilder-user-mode-linux | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux index 4ccc414..e2d3d9f 100755 --- a/pbuilder-user-mode-linux +++ b/pbuilder-user-mode-linux @@ -188,8 +188,12 @@ while [ -n "$1" ] ; do --override-config|--binary-arch) UML_EXTRAOPT="${UML_EXTRAOPT} $1" shift;; + --configfile) + UML_EXTRAOPT="${UML_EXTRAOPT} $1 $2" + . "$2" + shift; shift;; #things that can be passed through with options - --timeout|--http-proxy|--configfile|--hookdir|--aptconfdir|--bindmounts) + --timeout|--http-proxy|--hookdir|--aptconfdir|--bindmounts) UML_EXTRAOPT="${UML_EXTRAOPT} $1 $2" shift; shift;; --buildresult) |