The issue tracker has been moved https://gitlab.archlinux.org/archlinux/archiso/-/issues
FS#14148 - TARGET_PACKAGES_EXCLUDE
Attached to Project:
Release Engineering
Opened by Jud (judfilm) - Thursday, 09 April 2009, 08:37 GMT
Last edited by Dieter Plaetinck (Dieter_be) - Friday, 24 July 2009, 19:43 GMT
Opened by Jud (judfilm) - Thursday, 09 April 2009, 08:37 GMT
Last edited by Dieter Plaetinck (Dieter_be) - Friday, 24 July 2009, 19:43 GMT
|
DetailsFrom the mailinglist:
http://www.archlinux.org/pipermail/arch-releng/2009-April/000474.html Just to get the ball rolling. #!/bin/bash # 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 # End of File I'd like to work with Dieter to make this ready for inclusion into AIF. |
This task depends upon
Closed by Dieter Plaetinck (Dieter_be)
Friday, 24 July 2009, 19:43 GMT
Reason for closing: Implemented
Friday, 24 July 2009, 19:43 GMT
Reason for closing: Implemented
if [ -n "$TARGET_PACKAGES_EXCLUDE" ]; then
for remove_name in $TARGET_PACKAGES_EXCLUDE; do
ALL_PACKAGES=${ALL_PACKAGES//$remove_name/}
done
fi
Haven't allowed for the formatting of $ALL_PACKAGES yet.
Should this go in after line 25 or line 28?
What do you think?
See http://github.com/Dieterbe/aif/commit/5ebd3565e58ce30f91bbba9ce5f25871dddcd2e8