2022-08-04 20:56:02 +00:00
|
|
|
#!/bin/bash
|
2022-08-10 00:00:49 +00:00
|
|
|
set -e
|
|
|
|
cat << EOF | debconf-set-selections
|
|
|
|
firmware-ipw2x00 firmware-ipw2x00/license/accepted boolean true
|
|
|
|
EOF
|
2022-05-23 04:30:20 +00:00
|
|
|
apt -y update
|
|
|
|
apt -y upgrade
|
2022-08-10 00:00:49 +00:00
|
|
|
apt -y install $WDVN_PACKAGES_INTERACTIVE
|
2022-08-08 19:16:43 +00:00
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
2022-08-10 00:00:49 +00:00
|
|
|
apt -y install $WDVN_PACKAGES
|
|
|
|
apt -y install --download-only $WDVN_PACKAGES_DL
|
2022-08-04 20:56:02 +00:00
|
|
|
unset DEBIAN_FRONTEND
|
2022-05-23 04:30:20 +00:00
|
|
|
apt -y autoclean
|