Only include specific blueprints in the rpm

Related: rhbz#1613058
This commit is contained in:
Brian C. Lane 2018-08-21 12:30:05 -07:00
parent d8750db166
commit 792bf67ac7
1 changed files with 3 additions and 1 deletions

View File

@ -168,7 +168,9 @@ make DESTDIR=%{buildroot} mandir=%{_mandir} install
# Install example blueprints from the test suite.
# This path MUST match the lorax-composer.service blueprint path.
mkdir -p %{buildroot}/var/lib/lorax/composer/blueprints/
cp ./tests/pylorax/blueprints/*toml %{buildroot}/var/lib/lorax/composer/blueprints/
for bp in http-server.toml development.toml atlas.toml; do
cp ./tests/pylorax/blueprints/$bp %{buildroot}/var/lib/lorax/composer/blueprints/
done
%pre composer
getent group weldr >/dev/null 2>&1 || groupadd -r weldr >/dev/null 2>&1 || :