Compare commits
3 commits
a594ab0d12
...
2a67bbd47d
Author | SHA1 | Date | |
---|---|---|---|
2a67bbd47d | |||
ac909e22ce | |||
1bb11e204b |
1 changed files with 12 additions and 1 deletions
|
@ -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 <<EOF > build/chroot/tmp/install_base.sh
|
||||
#!/bin/bash
|
||||
|
@ -56,6 +58,10 @@ apt install -y --no-install-recommends \\
|
|||
linux-image-amd64 \\
|
||||
grub-pc \\
|
||||
ifupdown \\
|
||||
net-tools \\
|
||||
wireless-tools \\
|
||||
wpagui \\
|
||||
isc-dhcp-client \\
|
||||
man \\
|
||||
console-data \\
|
||||
locales \\
|
||||
|
@ -73,7 +79,12 @@ apt install -y --no-install-recommends \\
|
|||
curl \\
|
||||
less \\
|
||||
vim \\
|
||||
links2
|
||||
links2 \\
|
||||
firefox-esr \\
|
||||
transmission-gtk \\
|
||||
lxterminal \\
|
||||
arandr \\
|
||||
/tmp/xdgmenumaker*.deb
|
||||
echo -e "debian\ndebian" | (passwd root)
|
||||
useradd -m -s /bin/bash debian
|
||||
echo -e "debian\ndebian" | (passwd debian)
|
||||
|
|
Loading…
Reference in a new issue