spins removed from Beta
by Dennis Gilmore
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi All,
As Design Suite, Games and Security Spins were not signed off[1]
for Beta they have been removed from F20. They will need to reapply for
inclusion in F21.
Dennis
[1] http://fedoraproject.org/wiki/Releases/20/Spins
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (GNU/Linux)
iQIcBAEBAgAGBQJSfYtiAAoJEH7ltONmPFDR2ZMP/36WFbwSnE+uZ+TyV0kjg1R+
PCmCrbYIp2V8fsaHkXNGiKgm9UlD5N/q8IqwtduvjAqshB2ziRcuJFgD8IlDp3Y3
Dp9NfqmYEzcUx6kETB4A+Fhm4xZWvxaBJ9j4rb37MIGh4buYXMnx3AIhppBUUNqB
yrugdItbwSuaIkfF9Owx5UM9TLqtyy/cJo/5IAcZ4vDcPTeeZcoDI+OBwCiX4b8a
gObe7t7S+VgayPJxo4u+bQWTeg1zuGErfbw0h+0LrTeQarpOJfZuIArvQa4c0BcB
2Xw0FsA9A9r281ZbGPpdj0RtqmJD+x/u96gMjzLyTCouBcHJZCuIfFpiTejIcnxp
QVzA3wCwUyd2EpMQ7k/dEQRZI91Cx9F8B3HZYSWcqTe+1dwBMRlZVazaCUIAXXPc
ttluoaYif85yvc9DfxQhYWwkkC5x44CeTpjHg1dASQ2rpoxMlkUrChO9K+ywal+w
FC2apcXAvYDK1jOSffAO91R5SLdle6DwbVEmoP/UQIc/GUmkyx1YubQ1SPR73xgd
M3XmLQ1ZdAqd0PbJCwCZu8fyScRTJuL1zthvlQzaa1hAO/6f2tHJ+5BpgrkrnxnT
q8O+0xJBkwXaph5qrfz5csLyLGDrWOko+RLUjjZ3CUz/c1uTqfYvTr9YAimWKzLP
KkLvuj4JouH3tjVpRxIv
=1wrx
-----END PGP SIGNATURE-----
4 years, 6 months
[spin-kickstarts] #58: locale.conf has locale which is not installed, breaking systemd services
by fedora-badges
#58: locale.conf has locale which is not installed, breaking systemd services
-----------------------------+---------------------
Reporter: adelton | Owner: kanarip
Type: defect | Status: new
Priority: major | Milestone:
Component: kickstart pool | Keywords:
Blocked By: | Blocking:
-----------------------------+---------------------
= bug description =
The /etc/locale.conf contains
{{{
LANG="en_US.UTF-8"
}}}
The value is then set for services started by systemd, leading to errors.
For example
Dockerfile:
{{{
FROM fedora:21
ENV container docker
RUN systemctl mask systemd-remount-fs.service dev-hugepages.mount systemd-
logind.service getty.target # dnf-makecache.service dnf-makecache.timer
RUN sed -i 's/OOMScoreAdjust=-900//' /usr/lib/systemd/system/dbus.service
ADD test-locale.service /etc/systemd/system/test-locale.service
RUN systemctl enable test-locale.service
VOLUME [ "/tmp", "/run" ]
CMD [ "/usr/sbin/init" ]
LABEL RUN "docker run -ti -v /sys/fs/cgroup:/sys/fs/cgroup:ro ${NAME}"
}}}
test-locale.service:
{{{
[Unit]
Description=Test sort
[Service]
Type=oneshot
ExecStart=/usr/bin/python -c 'import locale;
locale.setlocale(locale.LC_ALL, "");'
[Install]
WantedBy=multi-user.target
}}}
Running container built from the above will show error
{{{
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
Starting Test sort...
Starting Permit User Sessions...
Starting D-Bus System Message Bus...
[ OK ] Started D-Bus System Message Bus.
[FAILED] Failed to start Test sort.
See "systemctl status test-locale.service" for details.
[ OK ] Started Permit User Sessions.
Starting Cleanup of Temporary Directories...
[ OK ] Reached target Multi-User System.
}}}
and {{{journalctl}}} will show
{{{
Oct 22 11:31:53 6d871a9aa693 systemd[1]: Reached target Timers.
Oct 22 11:31:53 6d871a9aa693 systemd[1]: Starting D-Bus System Message Bus
Socket.
Oct 22 11:31:53 6d871a9aa693 python[28]: Traceback (most recent call
last):
Oct 22 11:31:53 6d871a9aa693 python[28]: File "<string>", line 1, in
<module>
Oct 22 11:31:53 6d871a9aa693 python[28]: File
"/usr/lib64/python2.7/locale.py", line 579, in setlocale
Oct 22 11:31:53 6d871a9aa693 python[28]: return _setlocale(category,
locale)
Oct 22 11:31:53 6d871a9aa693 python[28]: locale.Error: unsupported locale
setting
Oct 22 11:31:53 6d871a9aa693 systemd[1]: test-locale.service: main process
exited, code=exited, status=1/FAILURE
Oct 22 11:31:53 6d871a9aa693 systemd[1]: Failed to start Test sort.
Oct 22 11:31:53 6d871a9aa693 systemd[1]: Unit test-locale.service entered
failed state.
Oct 22 11:31:53 6d871a9aa693 systemd[1]: test-locale.service failed.
Oct 22 11:31:53 6d871a9aa693 systemd[1]: Started Permit User Sessions.
}}}
= bug analysis =
/etc/locale.conf sets locale which is not installed.
= fix recommendation =
It is possible to workaround with
{{{
RUN echo LANG=POSIX > /etc/locale.conf
}}}
but if the base image limits the list of locales that are installed, it
should also set the proper value to /etc/locale.conf.
--
Ticket URL: <https://fedorahosted.org/spin-kickstarts/ticket/58>
spin-kickstarts <https://fedorahosted.org/spin-kickstarts/>
Kickstarts that the Spin SIG reviews, tests, maintains and releases (as a package).
7 years, 6 months
[spin-kickstarts] #57: When nfs-utils are installed, systemd-based image shows errors during startup
by fedora-badges
#57: When nfs-utils are installed, systemd-based image shows errors during
startup
-----------------------------+---------------------
Reporter: adelton | Owner: kanarip
Type: defect | Status: new
Priority: major | Milestone:
Component: kickstart pool | Keywords:
Blocked By: | Blocking:
-----------------------------+---------------------
= bug description =
This is a clone of https://github.com/fedora-cloud/docker-brew-
fedora/issues/26.
With Dockerfile
{{{
FROM fedora:22
ENV container docker
# to workaround https://github.com/fedora-cloud/docker-brew-
fedora/issues/21
RUN dnf upgrade -y && dnf clean all
RUN systemctl mask systemd-remount-fs.service dev-hugepages.mount sys-fs-
fuse-connections.mount systemd-logind.service getty.target console-
getty.service dnf-makecache.service
RUN dnf install -y nfs-utils
VOLUME [ "/tmp", "/run" ]
CMD [ "/usr/sbin/init" ]
LABEL RUN "docker run -ti -v /sys/fs/cgroup:/sys/fs/cgroup:ro ${NAME}"
}}}
running the container with
{{{
docker run -ti -v /sys/fs/cgroup:/sys/fs/cgroup:ro fedora-22-systemd
}}}
shows errors
{{{
[ OK ] Started Load/Save Random Seed.
[ OK ] Started Create System Users.
proc-fs-nfsd.mount mount process exited, code=exited status=32
[FAILED] Failed to mount NFSD configuration filesystem.
See "systemctl status proc-fs-nfsd.mount" for details.
[DEPEND] Dependency failed for GSSAPI Proxy Daemon.
Job gssproxy.service/start failed with result 'dependency'.
Unit proc-fs-nfsd.mount entered failed state.
[ OK ] Started Rebuild Journal Catalog.
[ OK ] Started Preprocess NFS configuration.
}}}
and
{{{
[ OK ] Started Create Volatile Files and Directories.
Mounting RPC Pipe File System...
Starting Update UTMP about System Boot/Shutdown...
[FAILED] Failed to mount RPC Pipe File System.
See "systemctl status var-lib-nfs-rpc_pipefs.mount" for details.
[DEPEND] Dependency failed for RPC security service for NFS client and
server.
[DEPEND] Dependency failed for RPC security service for NFS server.
[ OK ] Reached target NFS client services.
[ OK ] Reached target Remote File Systems (Pre).
}}}
Running {{{systemctl status ...}}} shows
{{{
# systemctl status proc-fs-nfsd.mount -l
● proc-fs-nfsd.mount - NFSD configuration filesystem
Loaded: loaded (/usr/lib/systemd/system/proc-fs-nfsd.mount; static;
vendor preset: disabled)
Active: failed (Result: exit-code) since Wed 2015-10-21 08:27:12 UTC;
29s ago
Where: /proc/fs/nfsd
What: nfsd
Process: 27 ExecMount=/bin/mount nfsd /proc/fs/nfsd -n -t nfsd
(code=exited, status=32)
Oct 21 08:27:13 17a4321fc06f mount[27]: mount: nfsd is write-protected,
mounting read-only
Oct 21 08:27:13 17a4321fc06f mount[27]: mount: cannot mount nfsd read-only
}}}
and
{{{
# systemctl status var-lib-nfs-rpc_pipefs.mount -l
● var-lib-nfs-rpc_pipefs.mount - RPC Pipe File System
Loaded: loaded (/usr/lib/systemd/system/var-lib-nfs-rpc_pipefs.mount;
static; vendor preset: disabled)
Active: failed (Result: exit-code) since Wed 2015-10-21 08:29:50 UTC;
28s ago
Where: /var/lib/nfs/rpc_pipefs
What: sunrpc
Process: 29 ExecMount=/bin/mount sunrpc /var/lib/nfs/rpc_pipefs -n -t
rpc_pipefs (code=exited, status=32)
Oct 21 08:29:50 00dba0989871 systemd[1]: Mounting RPC Pipe File System...
Oct 21 08:29:50 00dba0989871 systemd[1]: var-lib-nfs-rpc_pipefs.mount
mount process exited, code=exited status=32
Oct 21 08:29:50 00dba0989871 systemd[1]: Failed to mount RPC Pipe File
System.
Oct 21 08:29:50 00dba0989871 systemd[1]: Unit var-lib-nfs-rpc_pipefs.mount
entered failed state.
Oct 21 08:29:50 00dba0989871 mount[29]: mount: permission denied
}}}
= bug analysis =
Adding
{{{
RUN systemctl mask proc-fs-nfsd.mount var-lib-nfs-rpc_pipefs.mount
}}}
helps ... but should people have to do that, especially when nfs-utils
gets installed to their images via some (indirect) dependency?
= fix recommendation =
I'm not sure.
--
Ticket URL: <https://fedorahosted.org/spin-kickstarts/ticket/57>
spin-kickstarts <https://fedorahosted.org/spin-kickstarts/>
Kickstarts that the Spin SIG reviews, tests, maintains and releases (as a package).
7 years, 6 months
[spin-kickstarts] #56: By default, deltarpm seems enabled, causing warnings during dnf upgrade
by fedora-badges
#56: By default, deltarpm seems enabled, causing warnings during dnf upgrade
-----------------------------+---------------------
Reporter: adelton | Owner: kanarip
Type: defect | Status: new
Priority: major | Milestone:
Component: kickstart pool | Keywords:
Blocked By: | Blocking:
-----------------------------+---------------------
= bug description =
This is a clone of https://github.com/fedora-cloud/docker-brew-
fedora/issues/25
When building image with Dockerfile that starts with
{{{
FROM fedora:22
RUN dnf upgrade -y
}}}
there are numerous warnings:
{{{
/usr/share/man/man5/libaudit.conf.5.gz: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/man/man8/ca-legacy.8.gz: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/locale/cs/LC_MESSAGES/cryptsetup.mo: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/coreutils/ABOUT-NLS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/locale/cs/LC_MESSAGES/bash.mo: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/cyrus-sasl-lib/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/file-libs/ChangeLog: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/locale/ca/LC_MESSAGES/glib20.mo: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/info/info-stnd.info.gz: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/bash-completion/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/python-dnf/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/libassuan/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/locale/fi/LC_MESSAGES/util-linux.mo: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/libpwquality/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/krb5-libs/NOTICE: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/libxml2/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/libsolv/BUGS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/p11-kit/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/pcre/AUTHORS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/man/man5/cert8.db.5.gz: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/pam/html/sag-pam_deny.html: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/locale/de/LC_MESSAGES/rpm.mo: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/shared-mime-info/shared-mime-info-spec.xml: No such file or
directory
cannot reconstruct rpm from disk files
/usr/share/man/man8/udevadm.8.gz: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/glibc/NEWS: No such file or directory
cannot reconstruct rpm from disk files
/usr/share/doc/python-libs/README: No such file or directory
cannot reconstruct rpm from disk files
file-libs-5.22-4.fc22.x86_64: Delta RPM rebuild failed
ca-certificates-2015.2.5-1.0.fc22.noarch: Delta RPM rebuild failed
libxml2-2.9.2-4.fc22.x86_64: Delta RPM rebuild failed
libassuan-2.3.0-1.fc22.x86_64: Delta RPM rebuild failed
python-dnf-1.1.2-4.fc22.noarch: Delta RPM rebuild failed
glibc-2.21-8.fc22.x86_64: Delta RPM rebuild failed
krb5-libs-1.13.2-7.fc22.x86_64: Delta RPM rebuild failed
bash-completion-1:2.1-7.20150513git1950590.fc22.noarch: Delta RPM rebuild
failed
cyrus-sasl-lib-2.1.26-23.fc22.x86_64: Delta RPM rebuild failed
cryptsetup-libs-1.6.8-2.fc22.x86_64: Delta RPM rebuild failed
glib2-2.44.1-2.fc22.x86_64: Delta RPM rebuild failed
pam-1.1.8-19.fc22.x86_64: Delta RPM rebuild failed
nss-3.20.0-1.0.fc22.x86_64: Delta RPM rebuild failed
libpwquality-1.2.4-3.fc22.x86_64: Delta RPM rebuild failed
shared-mime-info-1.4-6.fc22.x86_64: Delta RPM rebuild failed
rpm-4.12.0.1-12.fc22.x86_64: Delta RPM rebuild failed
info-5.2-9.fc22.x86_64: Delta RPM rebuild failed
p11-kit-0.23.1-2.fc22.x86_64: Delta RPM rebuild failed
libsolv-0.6.11-2.fc22.x86_64: Delta RPM rebuild failed
python-libs-2.7.10-8.fc22.x86_64: Delta RPM rebuild failed
bash-4.3.42-1.fc22.x86_64: Delta RPM rebuild failed
util-linux-2.26.2-3.fc22.x86_64: Delta RPM rebuild failed
pcre-8.37-4.fc22.x86_64: Delta RPM rebuild failed
systemd-219-24.fc22.x86_64: Delta RPM rebuild failed
audit-libs-2.4.4-1.fc22.x86_64: Delta RPM rebuild failed
coreutils-8.23-11.fc22.x86_64: Delta RPM rebuild failed
--------------------------------------------------------------------------------
Total 5.1 MB/s | 62 MB
00:12
Delta RPMs reduced 56.1 MB of updates to 62.0 MB (-10.1% saved)
}}}
= bug analysis =
So with the default setup, more data is downloaded by dnf in an attempt to
use drpms than if it was disabled, wasting bandwidth and CPU. Using
{{{--setopt=deltarpm=false}}} works but it really should be default.
= fix recommendation =
Disable deltarpm in Docker images.
--
Ticket URL: <https://fedorahosted.org/spin-kickstarts/ticket/56>
spin-kickstarts <https://fedorahosted.org/spin-kickstarts/>
Kickstarts that the Spin SIG reviews, tests, maintains and releases (as a package).
7 years, 6 months
[spin-kickstarts] #55: The fedora:20 image has unpushed packages from updates-testing
by fedora-badges
#55: The fedora:20 image has unpushed packages from updates-testing
-----------------------------+---------------------
Reporter: adelton | Owner: kanarip
Type: defect | Status: new
Priority: major | Milestone:
Component: kickstart pool | Keywords:
Blocked By: | Blocking:
-----------------------------+---------------------
= bug description =
This is a copy of https://bugzilla.redhat.com/show_bug.cgi?id=1248467 and
https://github.com/fedora-cloud/docker-brew-fedora/issues/19:
Description of problem:
It seems fedora:20 image has openssl-libs from updates-testing, which is
not enabled, preventing installation of openssl.
Version-Release number of selected component (if applicable):
fedora:20 image 1b48ab88a33e.
And also 95ab8ef9075c.
= bug analysis =
How reproducible:
Deterministic.
Steps to Reproduce:
1. {{{# docker run -ti fedora:20 yum install openssl}}}
Actual results:
{{{
Resolving Dependencies
--> Running transaction check
---> Package openssl.x86_64 1:1.0.1e-42.fc20 will be installed
--> Processing Dependency: openssl-libs(x86-64) = 1:1.0.1e-42.fc20 for
package: 1:openssl-1.0.1e-42.fc20.x86_64
--> Processing Dependency: make for package:
1:openssl-1.0.1e-42.fc20.x86_64
--> Running transaction check
---> Package make.x86_64 1:3.82-19.fc20 will be installed
---> Package openssl.x86_64 1:1.0.1e-42.fc20 will be installed
--> Processing Dependency: openssl-libs(x86-64) = 1:1.0.1e-42.fc20 for
package: 1:openssl-1.0.1e-42.fc20.x86_64
--> Finished Dependency Resolution
Error: Package: 1:openssl-1.0.1e-42.fc20.x86_64 (updates)
Requires: openssl-libs(x86-64) = 1:1.0.1e-42.fc20
Installed: 1:openssl-libs-1.0.1e-45.fc20.x86_64 (@fedora-updates-
testing/$releasever)
openssl-libs(x86-64) = 1:1.0.1e-45.fc20
Available: 1:openssl-libs-1.0.1e-30.fc20.x86_64 (fedora)
openssl-libs(x86-64) = 1:1.0.1e-30.fc20
Available: 1:openssl-libs-1.0.1e-42.fc20.x86_64 (updates)
openssl-libs(x86-64) = 1:1.0.1e-42.fc20
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
}}}
Expected results:
No error, installation of openssl passes.
= fix recommendation =
While Fedora 20 EOL'ed on 2015-06-23, it seems something has rebuilt the
image on or after that date because
http://koji.fedoraproject.org/koji/buildinfo?buildID=664541 as built the
same day.
It'd be nice to have reasonably working Fedora 20 image around, we use it
for upgrade testing.
--
Ticket URL: <https://fedorahosted.org/spin-kickstarts/ticket/55>
spin-kickstarts <https://fedorahosted.org/spin-kickstarts/>
Kickstarts that the Spin SIG reviews, tests, maintains and releases (as a package).
7 years, 6 months
[spin-kickstarts] #54: The fedora:23 image contains /etc/fstab with UUID=... line, leading to error message when systemd is used in container
by fedora-badges
#54: The fedora:23 image contains /etc/fstab with UUID=... line, leading to
error message when systemd is used in container
-----------------------------+---------------------
Reporter: adelton | Owner: kanarip
Type: defect | Status: new
Priority: major | Milestone:
Component: kickstart pool | Keywords:
Blocked By: | Blocking:
-----------------------------+---------------------
= bug description =
The fedora:23 image contains record for root partition in /etc/fstab.
= bug analysis =
When systemd is run via {{{ENTRYPOINT [ "/usr/sbin/init" ]}}}, it will
complain
{{{
Running in a container, ignoring fstab device entry for /dev/disk/by-
uuid/2cd63037-e967-4e87-b29b-044190721e80.
}}}
= fix recommendation =
Remove /etc/fstab or remove that line
{{{
UUID=2cd63037-e967-4e87-b29b-044190721e80 / ext4
defaults 1 1
}}}
from it.
--
Ticket URL: <https://fedorahosted.org/spin-kickstarts/ticket/54>
spin-kickstarts <https://fedorahosted.org/spin-kickstarts/>
Kickstarts that the Spin SIG reviews, tests, maintains and releases (as a package).
7 years, 6 months
[spin-kickstarts] add @gnome-desktop to fedora-workstation-packages
by Adam Williamson
commit 6b42371f723437214404c37366e7784004e12dc3
Author: Adam Williamson <awilliam(a)redhat.com>
Date: Wed Nov 25 11:50:26 2015 -0800
add @gnome-desktop to fedora-workstation-packages
This goes with comps 2414bbef.
fedora-workstation-packages.ks | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/fedora-workstation-packages.ks b/fedora-workstation-packages.ks
index eceda57..f593821 100644
--- a/fedora-workstation-packages.ks
+++ b/fedora-workstation-packages.ks
@@ -11,6 +11,7 @@
@core
@firefox
@fonts
+@gnome-desktop
@guest-desktop-agents
@hardware-support
@libreoffice
7 years, 6 months
[spin-kickstarts] #53: Backporting addition of SSSD client bits to Fedora 23 base docker image
by fedora-badges
#53: Backporting addition of SSSD client bits to Fedora 23 base docker image
-----------------------------+---------------------
Reporter: adelton | Owner: kanarip
Type: task | Status: new
Priority: major | Milestone:
Component: kickstart pool | Keywords:
Blocked By: | Blocking:
-----------------------------+---------------------
= phenomenon =
Hello,
we are working on SSSD container for Atomic Host:
https://lists.projectatomic.io/projectatomic-archives/atomic-
devel/2015-September/msg00086.html
It allows SSSD (the daemon) plus the configuration tools (ipa-client-
install, realm) to be in container but for other container to be able to
use it for resolution of user identities or authentication, NSS and PAM
libraries that would be able to talk to the SSSD container via Unix
sockets are needed.
= background analysis =
The libraries that I consider essential are
/usr/lib64/libnss_sss.so.2
/usr/lib64/sssd/modules/sssd_krb5_localauth_plugin.so
/usr/lib64/security/pam_sss.so
The package that contains them is sssd-client and it has two dependencies,
libsss_idmap and libsss_nss_idmap. The total size as reported by dnf in a
fedora:22 container is
Total download size: 284 k Installed size: 336 k
= implementation recommendation =
The sssd-client was added to master via
https://fedorahosted.org/spin-kickstarts/ticket/50
and commit ee22a9c00c250e6b141094dfadc6a45a1ec7f7b2.
Could we have that change backported to Fedora 23 base docker image as
well.
Running
git cherry-pick -x ee22a9c00c250e6b141094dfadc6a45a1ec7f7b2
in the f23 branch should do the trick.
--
Ticket URL: <https://fedorahosted.org/spin-kickstarts/ticket/53>
spin-kickstarts <https://fedorahosted.org/spin-kickstarts/>
Kickstarts that the Spin SIG reviews, tests, maintains and releases (as a package).
7 years, 6 months
[spin-kickstarts] add new ansible-node group to Server DVD
by Adam Williamson
commit 1d9ef5a9c1e148b979c68a1b510f6b007e652d93
Author: Adam Williamson <awilliam(a)redhat.com>
Date: Tue Nov 17 08:58:40 2015 -0800
add new ansible-node group to Server DVD
fedora-install-server.ks | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/fedora-install-server.ks b/fedora-install-server.ks
index 61fcb73..5dd29c1 100644
--- a/fedora-install-server.ks
+++ b/fedora-install-server.ks
@@ -115,6 +115,7 @@ dracut-*
@javaenterprise
# “uservisible” groups we want to offer
+@ansible-node
@editors
@network-server
@system-tools
7 years, 6 months
[spin-kickstarts] ARM: minimal: increase size of boot
by Peter Robinson
commit aafeb10a573ec7476ef4fa86b1459afc9bfda8d3
Author: Peter Robinson <pbrobinson(a)gmail.com>
Date: Mon Nov 16 12:41:34 2015 +0000
ARM: minimal: increase size of boot
fedora-arm-minimal.ks | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/fedora-arm-minimal.ks b/fedora-arm-minimal.ks
index 86f4e38..b98d7db 100644
--- a/fedora-arm-minimal.ks
+++ b/fedora-arm-minimal.ks
@@ -1,6 +1,6 @@
%include fedora-arm-base.ks
-part /boot --size=300 --fstype ext4
+part /boot --size=512 --fstype ext4
part swap --size=256 --fstype swap
part / --size=1200 --fstype ext4
7 years, 6 months