This release patches a bug where whitespace was not being
correctly stripped from package names
Signed-off-by: Brad T. Peters <brad.t.peters@intel.com>
This release includes fixes for validating builder.conf is correct, and fixes a
bug where the chroot builder would loop forever if m4 output was too large.
Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
If there are a lot of packages then the m4 output will overflow the max
PIPE buffer, and the wait() will never finish. This patch reads the output
in chunks and then creates a string of the entire output to pass to yum.
Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
The os.path.join() function discard any previos paths/variables when it
encounters one starting with a leading "/" so the statedir & bundle name were
completely ignored when it ran into /usr/share/defaults/...
This fixes it so the path is correctly made, and the dirs and files should be
installed correctly.
Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
The update client currently defaults to the public clearlinux url, and must be
overridden with cmd line options to use other version/content/format urls. This
introduces a problem when running a mix, and not supplying the mix URL will
cause swupd to update from the official URL, rather than the mixer url.
With this patch, the URLs can all be specified and are inserted into conf files
that the swupd client will read, to know what URL to default to.
Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>