diff options
| -rwxr-xr-x | arch-base/create-rootfs.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch-base/create-rootfs.sh b/arch-base/create-rootfs.sh index 0224df6..5d2779f 100755 --- a/arch-base/create-rootfs.sh +++ b/arch-base/create-rootfs.sh @@ -7,7 +7,6 @@ ## (4) run pacstrap. ## (5) copy bootstrap script and default pacman config. ## (6) run bootstrap script in new root fs. -## (7) cleaning. ## ## (1) @@ -21,7 +20,7 @@ umount -R "$ROOTFS" mount -t tmpfs -o size=400M tmpfs "$ROOTFS" ## (4) -./pacstrap.sh -c -d "$ROOTFS" bash coreutils ca-certificates pacman sed binutils file +./pacstrap.sh -c -d "$ROOTFS" bash coreutils ca-certificates pacman sed binutils file grep ## (5) cp ./pacman.conf "$ROOTFS/etc/" @@ -29,6 +28,3 @@ cp ./bootstrap.sh "$ROOTFS/" ## (6) arch-chroot "$ROOTFS" /bin/sh -c /bootstrap.sh - -## (7) -rm "$ROOTFS"/bootstrap.sh |
