home · contact · privacy
Enhance bookworm setup.
[config] / bookworm / setup_scripts / install_for_target.sh
1 #!/bin/sh
2 # Walks through the package names in the argument-selected files of
3 # apt-mark/ and ensures the respective packages are installed.
4 #
5 # Ignores anything in an apt-mark/ file after the last newline.
6 set -e
7 . ./misc.sh
8
9 for target in "$@"; do
10     path="${aptmark_dir}/${target}"
11     # TODO: continue if file at $path not found, to get rid of dummy files
12     cat "${path}" | while read line; do
13         echo "$line"
14         if [ ! $(echo "${line}" | cut -c1) = "#" ]; then
15             DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::=--force-confold install "${line}"
16         fi
17     done
18 done