> --- /dev/null > +++ b/devel/build_chroot > @@ -0,0 +1,139 @@ > +#!/bin/bash > +#Configuration > +CHROOTNAME=squeeze64
What about just providing defaults for the configuration
instead of hard-coding values here? I.e., did you consider
using
: ${CHROOTNAME:=squeeze64}
instead? (and similar for other configuration parameter)
