From ca065ec550e47744a433a5e1baac841ed1a7ef76 Mon Sep 17 00:00:00 2001 From: Timothy Redaelli Date: Sat, 27 Jun 2015 14:41:33 +0200 Subject: [PATCH] Don't copy mirrorlist --- vps2arch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vps2arch b/vps2arch index 3355781..d23ef3e 100755 --- a/vps2arch +++ b/vps2arch @@ -88,7 +88,7 @@ delete_all() { install_packages() { local packages="base grub openssh" # You can't use chroot_exec here, because the root filesystem was deleted! - "/root.$cpu_type/usr/bin/busybox" chroot "/root.$cpu_type" /usr/bin/pacstrap /mnt $packages + "/root.$cpu_type/usr/bin/busybox" chroot "/root.$cpu_type" /usr/bin/pacstrap -M /mnt $packages cp -L "/root.$cpu_type/etc/resolv.conf" /etc }