This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d-i passwd/root-login boolean false | |
d-i base-installer/install-recommends boolean false | |
d-i apt-setup/non-free boolean true | |
d-i apt-setup/contrib boolean true | |
d-i popularity-contest/participate boolean false | |
d-i preseed/late_command string in-target apt-get install --purge -y sysvinit-core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
constraint () { echo -n $@ ' '; } | |
not () { echo -n '! '; } | |
installed () { constraint '~i'; } | |
auto () { constraint '~M'; } |