b6e640bd8d
Thanks someone for review and feedback: http://www.opennet.ru/openforum/vsluhforumID3/83728.html#136 Better cleanup and i18n controls are due but in the meantime, let's at least build something actually useful.
7 lines
173 B
Bash
Executable File
7 lines
173 B
Bash
Executable File
#!/bin/sh -efu
|
|
# remove extra packages from a bare livecd
|
|
|
|
list="$(rpmquery -a --qf='%{NAME}\n' $GLOBAL_CLEANUP_PACKAGES)"
|
|
[ -z "$list" ] || apt-get remove -f -y -- $list
|
|
:
|