From 9dd60741bddfb9cd61d6665bffd2d1ea9b99513b Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Sat, 24 Jan 2009 16:52:54 -0600 Subject: Add a param to NOT copy config files to the chroot This is primarilly needed for archiso creation, but could be useful elsewhere. Signed-off-by: Aaron Griffin --- mkarchroot | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'mkarchroot') diff --git a/mkarchroot b/mkarchroot index 099083d..b20e5a4 100755 --- a/mkarchroot +++ b/mkarchroot @@ -10,6 +10,7 @@ FORCE="n" RUN="" +NOCOPY="n" working_dir="" @@ -25,6 +26,7 @@ usage () echo " -f Force overwrite of files in the working-dir" echo " -C location of a pacman config file" echo " -M location of a makepkg config file" + echo " -n do not copy config files into the chroot" echo " -h This message" exit $1 } @@ -36,6 +38,7 @@ while getopts 'r:ufhC:M:' arg; do f) FORCE="y" ;; C) pac_conf="$OPTARG" ;; M) makepkg_conf="$OPTARG" ;; + n) NOCOPY="y" ;; h|?) usage 0 ;; *) echo "invalid argument '${arg}'"; usage 1 ;; esac @@ -161,12 +164,12 @@ else ldconfig -r "${working_dir}" fi - if [ "$pac_conf" != "" ]; then + if [ "$pac_conf" != "" -a "$NOCOPY" = "n" ]; then echo "installing custom pacman.conf" cp ${pac_conf} ${working_dir}/etc/pacman.conf fi - if [ "$makepkg_conf" != "" ]; then + if [ "$makepkg_conf" != "" -a "$NOCOPY" = "n" ]; then echo "installing custom makepkg.conf" cp ${makepkg_conf} ${working_dir}/etc/makepkg.conf fi -- cgit v1.2.3-24-g4f1b