From 1bb11e204b3ac9df90039eb72066714aeaf883e1 Mon Sep 17 00:00:00 2001 From: Marcus Date: Mon, 1 May 2023 06:20:39 +0200 Subject: [PATCH] progress --- makeanything.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makeanything.sh b/makeanything.sh index 6892937..2e2586c 100755 --- a/makeanything.sh +++ b/makeanything.sh @@ -45,6 +45,8 @@ test -f build/chroot || mkdir -p build/chroot message "running debootstrap" sudo debootstrap bullseye build/chroot/ http://ftp.de.debian.org/debian || sudo debootstrap bullseye build/chroot/ http://ftp.de.debian.org/debian +message "copy xdgmenumaker deb file into chroot" +sudo cp deb/xdgmenumaker* build/chroot/tmp message "deploying install_base" cat < build/chroot/tmp/install_base.sh #!/bin/bash @@ -74,6 +76,7 @@ apt install -y --no-install-recommends \\ less \\ vim \\ links2 + /tmp/xdgmenumaker*.deb echo -e "debian\ndebian" | (passwd root) useradd -m -s /bin/bash debian echo -e "debian\ndebian" | (passwd debian)