[fedora-kickstarts] branch f30 updated: Use dnf instead of yum
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a commit to branch f30
in repository fedora-kickstarts.
The following commit(s) were added to refs/heads/f30 by this push:
new 0d9a3ed Use dnf instead of yum
0d9a3ed is described below
commit 0d9a3ed849fa67068460e47f4b5c83d85b839a6b
Author: Zbigniew Jędrzejewski-Szmek <zbyszek(a)in.waw.pl>
AuthorDate: Tue Feb 26 11:38:44 2019 +0100
Use dnf instead of yum
I left the instructions for yum-langpacks around, because I'm not sure
how the dnf replacement looks. But all references to yum-the-executable
are gone.
https://fedoraproject.org/wiki/Changes/Retire_YUM_3
https://bugzilla.redhat.com/show_bug.cgi?id=1682910
---
fedora-cloud-base.ks | 2 +-
fedora-cloud-bigdata.ks | 14 +++++++-------
fedora-cloud-experimental.ks | 14 +++++++-------
3 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/fedora-cloud-base.ks b/fedora-cloud-base.ks
index 740c742..a8bc5df 100644
--- a/fedora-cloud-base.ks
+++ b/fedora-cloud-base.ks
@@ -137,7 +137,7 @@ echo "Removing firewalld."
# not work when package was installed by Anaconda instead of command line.
# Also -- check if this is still even needed with new anaconda -- disabled
# firewall should _not_ pull in this package.
-# yum -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
+# dnf -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
dnf -C -y erase "firewalld*"
# Another one needed at install time but not after that, and it pulls
diff --git a/fedora-cloud-bigdata.ks b/fedora-cloud-bigdata.ks
index fd67c89..0d96e3a 100644
--- a/fedora-cloud-bigdata.ks
+++ b/fedora-cloud-bigdata.ks
@@ -112,12 +112,12 @@ rpm -e linux-firmware
# Remove firewalld; was supposed to be optional in F18+, but is required to
# be present for install/image building.
echo "Removing firewalld."
-yum -C -y remove firewalld --setopt="clean_requirements_on_remove=1"
+dnf -C -y remove firewalld --setopt="clean_requirements_on_remove=1"
# Another one needed at install time but not after that, and it pulls
# in some unneeded deps (like, newt and slang)
echo "Removing authconfig."
-yum -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
+dnf -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
echo -n "Getty fixes"
# although we want console output going to the serial console, we don't
@@ -176,10 +176,10 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
echo "Removing random-seed so it's not the same in every image."
rm -f /var/lib/systemd/random-seed
-echo "Cleaning old yum repodata."
-yum history new
-yum clean all
-truncate -c -s 0 /var/log/yum.log
+echo "Cleaning old dnf repodata."
+dnf history new
+dnf clean all
+truncate -c -s 0 /var/log/dnf.log
echo "Import RPM GPG key"
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
@@ -204,7 +204,7 @@ dd if=/usr/share/syslinux/mbr.bin of=/dev/vda
echo "Fixing SELinux contexts."
touch /var/log/cron
touch /var/log/boot.log
-mkdir -p /var/cache/yum
+mkdir -p /var/cache/dnf
/usr/sbin/fixfiles -R -a restore
echo "Zeroing out empty space."
diff --git a/fedora-cloud-experimental.ks b/fedora-cloud-experimental.ks
index 16a3499..4f95ff7 100644
--- a/fedora-cloud-experimental.ks
+++ b/fedora-cloud-experimental.ks
@@ -103,12 +103,12 @@ rpm -e linux-firmware
# Remove firewalld; was supposed to be optional in F18+, but is required to
# be present for install/image building.
echo "Removing firewalld."
-yum -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
+dnf -C -y remove "firewalld*" --setopt="clean_requirements_on_remove=1"
# Another one needed at install time but not after that, and it pulls
# in some unneeded deps (like, newt and slang)
echo "Removing authconfig."
-yum -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
+dnf -C -y remove authconfig --setopt="clean_requirements_on_remove=1"
echo -n "Getty fixes"
# although we want console output going to the serial console, we don't
@@ -167,10 +167,10 @@ echo "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot
echo "Removing random-seed so it's not the same in every image."
rm -f /var/lib/systemd/random-seed
-echo "Cleaning old yum repodata."
-yum history new
-yum clean all
-truncate -c -s 0 /var/log/yum.log
+echo "Cleaning old dnf repodata."
+dnf history new
+dnf clean all
+truncate -c -s 0 /var/log/dnf.log
echo "Import RPM GPG key"
releasever=$(rpm -q --qf '%{version}\n' fedora-release)
@@ -196,7 +196,7 @@ dd if=/usr/share/syslinux/mbr.bin of=/dev/vda
echo "Fixing SELinux contexts."
touch /var/log/cron
touch /var/log/boot.log
-mkdir -p /var/cache/yum
+mkdir -p /var/cache/dnf
chattr -i /boot/extlinux/ldlinux.sys
/usr/sbin/fixfiles -R -a restore
chattr +i /boot/extlinux/ldlinux.sys
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
[fedora-kickstarts] branch master updated (d64a181 -> 86e0dc1)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a change to branch master
in repository fedora-kickstarts.
from d64a181 l10n: Correct Xfce include for l10n files. Bug 1669894
add 86e0dc1 Use dnf instead of yum
No new revisions were added by this update.
Summary of changes:
fedora-cloud-base.ks | 2 +-
fedora-cloud-bigdata.ks | 14 +++++++-------
fedora-cloud-experimental.ks | 14 +++++++-------
3 files changed, 15 insertions(+), 15 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
[fedora-kickstarts] branch master updated (e4a7785 -> d64a181)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch master
in repository fedora-kickstarts.
from e4a7785 Change lxqt-l10n to group.
add d64a181 l10n: Correct Xfce include for l10n files. Bug 1669894
No new revisions were added by this update.
Summary of changes:
l10n/fedora-livecd-xfce-de_CH.ks | 2 +-
l10n/fedora-livecd-xfce-de_DE.ks | 2 +-
l10n/fedora-livecd-xfce-fr_FR.ks | 2 +-
l10n/fedora-livecd-xfce-nl_NL.ks | 2 +-
l10n/fedora-livecd-xfce-pt_PT.ks | 2 +-
l10n/fedora-livecd-xfce-ru_RU.ks | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
spin questions
by Antonette Caldwell
Hi all
I was looking through the current spin releases, and I remember the security spin was available and now it is gone. I am interested in starting up the security spin. I would like to know what to do get started?
4 years, 3 months
[fedora-kickstarts] branch f30 updated (e4a7785 -> 1fa1ac2)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
kevin pushed a change to branch f30
in repository fedora-kickstarts.
from e4a7785 Change lxqt-l10n to group.
add 1fa1ac2 Branching F30 from rawhide
No new revisions were added by this update.
Summary of changes:
fedora-repo.ks | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
[fedora-kickstarts] branch f30 created (now e4a7785)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch f30
in repository fedora-kickstarts.
at e4a7785 Change lxqt-l10n to group.
No new revisions were added by this update.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
[fedora-kickstarts] branch master updated (de5bf88 -> e4a7785)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch master
in repository fedora-kickstarts.
from de5bf88 Remove Atomic Host kickstarts F30 and onward in the favor of FCOS
add e4a7785 Change lxqt-l10n to group.
No new revisions were added by this update.
Summary of changes:
fedora-lxqt-common.ks | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
[fedora-kickstarts] branch master updated (9ece69f -> de5bf88)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
mohanboddu pushed a change to branch master
in repository fedora-kickstarts.
from 9ece69f removed xmoto, warmux and freedroidrpg for size
add de5bf88 Remove Atomic Host kickstarts F30 and onward in the favor of FCOS
No new revisions were added by this update.
Summary of changes:
fedora-atomic-vagrant.ks | 37 -----------
fedora-atomic.ks | 157 -----------------------------------------------
2 files changed, 194 deletions(-)
delete mode 100644 fedora-atomic-vagrant.ks
delete mode 100644 fedora-atomic.ks
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
[fedora-kickstarts] branch master updated (583a071 -> 9ece69f)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
kevin pushed a change to branch master
in repository fedora-kickstarts.
from 583a071 l10n: Replace language specific support groups with langpacks packages. This is part of https://fedoraproject.org/wiki/Changes/Replace_Comps_Language_Group_With_...
add 9ece69f removed xmoto, warmux and freedroidrpg for size
No new revisions were added by this update.
Summary of changes:
fedora-live-games.ks | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months
[fedora-kickstarts] branch master updated (e1a3a12 -> 583a071)
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
kevin pushed a change to branch master
in repository fedora-kickstarts.
from e1a3a12 Update fedora-live-games.ks
add 583a071 l10n: Replace language specific support groups with langpacks packages. This is part of https://fedoraproject.org/wiki/Changes/Replace_Comps_Language_Group_With_...
No new revisions were added by this update.
Summary of changes:
l10n/fedora-live-workstation-de_CH.ks | 2 +-
l10n/fedora-live-workstation-de_DE.ks | 2 +-
l10n/fedora-live-workstation-fr_FR.ks | 2 +-
l10n/fedora-live-workstation-ja_JP.ks | 2 +-
l10n/fedora-live-workstation-nl_NL.ks | 2 +-
l10n/fedora-live-workstation-pt_BR.ks | 2 +-
l10n/fedora-live-workstation-pt_PT.ks | 2 +-
l10n/fedora-live-workstation-ru_RU.ks | 2 +-
l10n/fedora-livecd-cinnamon-de_DE.ks | 2 +-
l10n/fedora-livecd-cinnamon-ja_JP.ks | 2 +-
l10n/fedora-livecd-kde-de_CH.ks | 2 +-
l10n/fedora-livecd-kde-de_DE.ks | 2 +-
l10n/fedora-livecd-kde-fr_FR.ks | 2 +-
l10n/fedora-livecd-kde-ja_JP.ks | 2 +-
l10n/fedora-livecd-kde-nl_NL.ks | 2 +-
l10n/fedora-livecd-kde-pt_PT.ks | 2 +-
l10n/fedora-livecd-kde-ru_RU.ks | 2 +-
l10n/fedora-livecd-lxde-de_CH.ks | 2 +-
l10n/fedora-livecd-lxde-de_DE.ks | 2 +-
l10n/fedora-livecd-lxde-fr_FR.ks | 2 +-
l10n/fedora-livecd-lxde-ja_JP.ks | 2 +-
l10n/fedora-livecd-lxde-ru_RU.ks | 2 +-
l10n/fedora-livecd-xfce-de_CH.ks | 2 +-
l10n/fedora-livecd-xfce-de_DE.ks | 2 +-
l10n/fedora-livecd-xfce-fr_FR.ks | 2 +-
l10n/fedora-livecd-xfce-ja_JP.ks | 2 +-
l10n/fedora-livecd-xfce-nl_NL.ks | 2 +-
l10n/fedora-livecd-xfce-pt_PT.ks | 2 +-
l10n/fedora-livecd-xfce-ru_RU.ks | 2 +-
l10n/fedora-livedvd-electronic-lab-de_CH.ks | 2 +-
l10n/fedora-livedvd-electronic-lab-de_DE.ks | 2 +-
l10n/fedora-livedvd-electronic-lab-nl_NL.ks | 2 +-
l10n/fedora-livedvd-electronic-lab-pt_PT.ks | 2 +-
l10n/fedora-livedvd-electronic-lab-ru_RU.ks | 2 +-
l10n/fedora-livedvd-games-de_CH.ks | 2 +-
l10n/fedora-livedvd-games-de_DE.ks | 2 +-
l10n/fedora-livedvd-games-ja_JP.ks | 2 +-
l10n/fedora-livedvd-games-nl_NL.ks | 2 +-
l10n/fedora-livedvd-games-pt_PT.ks | 2 +-
l10n/fedora-livedvd-games-ru_RU.ks | 2 +-
40 files changed, 40 insertions(+), 40 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 3 months