[arch-releng] TARGET_PACKAGES_EXCLUDE - Proof of Concept

Jud jud at judfilm.net
Wed Apr 1 09:58:36 EDT 2009


Just to get the ball rolling.

#!/bin/sh
# Proof of Concept

# ToDo:
# Work out best place to add into the aif code
# Sanity Checks?

var="coreutils vi vsftpd kernel26 kernel26-firmware gcc gcc-libs file
vi pam man-pages jfsutils perl iptables"

remove="vi man-pages jfsutils iptables"

result=$var

for each_name in $remove; do
  result=$(echo ${result//$each_name/})
done

echo $var

echo $remove

echo $result


More information about the arch-releng mailing list