mirror of
https://github.com/clearlinux/bundle-chroot-builder.git
synced 2026-08-19 12:06:37 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cd634c88df | |||
| 6aa46648d0 | |||
| 9fc98a03b1 | |||
| c96046001e |
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
[Builder]
|
[Builder]
|
||||||
SERVER_STATE_DIR=/home/clr/mix/update
|
SERVER_STATE_DIR=/home/clr/mix/update
|
||||||
BUNDLE_DIR=/home/clr/mix/bundles
|
BUNDLE_DIR=/home/clr/mix/mix-bundles
|
||||||
YUM_CONF=/home/clr/mix/.yum-mix.conf
|
YUM_CONF=/home/clr/mix/.yum-mix.conf
|
||||||
CERT=/home/clr/mix/ClearLinuxRoot.pem
|
CERT=/home/clr/mix/ClearLinuxRoot.pem
|
||||||
CLEAR_VERSION=VER
|
CLEAR_VERSION=VER
|
||||||
@@ -8,6 +8,6 @@ MIX_VERSION=VER
|
|||||||
|
|
||||||
[swupd]
|
[swupd]
|
||||||
BUNDLE=os-core-update
|
BUNDLE=os-core-update
|
||||||
CONTENTURL=https://download.clearlinux.org/update/
|
CONTENTURL=<URL where the content will be hosted>
|
||||||
VERSIONURL=https://download.clearlinux.org/update/
|
VERSIONURL=<URL where the version of the mix will be hosted>
|
||||||
FORMAT=1
|
FORMAT=1
|
||||||
|
|||||||
@@ -74,9 +74,13 @@ def read_config(args):
|
|||||||
def install_bundle(out_dir, postfix, bundle, bundles, yum_cmd):
|
def install_bundle(out_dir, postfix, bundle, bundles, yum_cmd):
|
||||||
"""Helper function to yum install a bundle"""
|
"""Helper function to yum install a bundle"""
|
||||||
lines = []
|
lines = []
|
||||||
with subprocess.Popen(["m4", bundles + "/" + bundle], cwd=bundles, stdout=subprocess.PIPE, bufsize=1, universal_newlines=True) as p:
|
try:
|
||||||
for line in p.stdout:
|
output = subprocess.check_output(["m4", bundles + "/" + bundle], cwd=bundles, bufsize=1, universal_newlines=True)
|
||||||
lines.append(line)
|
except subprocess.CalledProcessError as e:
|
||||||
|
print('ERROR {0}: m4 failed on {1}/{2}'.format(e.returncode, bundles, bundle))
|
||||||
|
raise
|
||||||
|
for line in output:
|
||||||
|
lines.append(line)
|
||||||
|
|
||||||
pkgs = "".join(lines)
|
pkgs = "".join(lines)
|
||||||
to_install = []
|
to_install = []
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ([2.68])
|
AC_PREREQ([2.68])
|
||||||
AC_INIT([bundle-chroot-builder],[1.07],[tudor.marcu@intel.com],[bundle-chroot-builder])
|
AC_INIT([bundle-chroot-builder],[1.09],[tudor.marcu@intel.com],[bundle-chroot-builder])
|
||||||
AM_INIT_AUTOMAKE([foreign silent-rules color-tests no-dist-gzip dist-xz])
|
AM_INIT_AUTOMAKE([foreign silent-rules color-tests no-dist-gzip dist-xz])
|
||||||
AC_CONFIG_FILES(Makefile)
|
AC_CONFIG_FILES(Makefile)
|
||||||
AC_PREFIX_DEFAULT(/usr/local)
|
AC_PREFIX_DEFAULT(/usr/local)
|
||||||
|
|||||||
Reference in New Issue
Block a user