Add support for defining dnf package groups to install
This commit is contained in:
parent
388fd4f93d
commit
79cc4b6ef0
3 changed files with 22 additions and 3 deletions
10
build.sh
10
build.sh
|
|
@ -1,6 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -ouex pipefail
|
||||
set -oex pipefail
|
||||
set +u
|
||||
|
||||
RELEASE="$(rpm -E %fedora)"
|
||||
|
||||
|
|
@ -36,9 +37,12 @@ rpm-ostree install \
|
|||
alsa-tools \
|
||||
libappstream-glib \
|
||||
htop \
|
||||
glances \
|
||||
task
|
||||
glances
|
||||
|
||||
# from dnf groups (specify in build.yml)
|
||||
if [ -n "$GROUP_PKGS"]; then
|
||||
rpm-ostree install $GROUP_PKGS
|
||||
fi
|
||||
|
||||
# from rpmfusion
|
||||
rpm-ostree install vlc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue