mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-02-25 12:52:23 +00:00
design-suite: fix correct url for both Design Suite and Design Team shorcuts
This commit is contained in:
commit
a7d928767c
29
fedora-arm-server.ks
Normal file
29
fedora-arm-server.ks
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
%include fedora-arm-base.ks
|
||||||
|
|
||||||
|
%packages
|
||||||
|
-@fedora-release-nonproduct
|
||||||
|
-@dial-up
|
||||||
|
# install the default groups for the server evironment since installing the environment is not working
|
||||||
|
@server-product
|
||||||
|
@standard
|
||||||
|
@headless-management
|
||||||
|
@container-management
|
||||||
|
@domain-client
|
||||||
|
-initial-setup-gui
|
||||||
|
-generic-release*
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
# setup systemd to boot to the right runlevel
|
||||||
|
echo -n "Setting default runlevel to multiuser text mode"
|
||||||
|
rm -f /etc/systemd/system/default.target
|
||||||
|
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
|
||||||
|
echo .
|
||||||
|
|
||||||
|
echo -n "Enabling initial-setup text mode on startup"
|
||||||
|
ln -s /usr/lib/systemd/system/initial-setup-text.service /etc/systemd/system/multi-user.target.wants/initial-setup-text.service
|
||||||
|
echo .
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
31
fedora-cloud-atomic-pxetolive.ks
Normal file
31
fedora-cloud-atomic-pxetolive.ks
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# PXE-to-Live Atomic: PXE boot directly into a running Atomic Host
|
||||||
|
# https://fedoraproject.org/wiki/Changes/AtomicHost
|
||||||
|
|
||||||
|
lang en_US.UTF-8
|
||||||
|
keyboard us
|
||||||
|
timezone America/New_York
|
||||||
|
zerombr
|
||||||
|
clearpart --all --initlabel
|
||||||
|
rootpw --lock --iscrypted locked
|
||||||
|
user --name=none
|
||||||
|
bootloader --timeout=1
|
||||||
|
network --bootproto=dhcp --device=link --activate
|
||||||
|
# We are only able to install atomic with separate /boot partition currently
|
||||||
|
part / --fstype="ext4" --size=6000
|
||||||
|
part /boot --size=500 --fstype="ext4"
|
||||||
|
shutdown
|
||||||
|
services --disabled=docker-storage-setup,network
|
||||||
|
services --enabled=NetworkManager,sshd,cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/22/ --ref=fedora-atomic/f22/x86_64/docker-host
|
||||||
|
|
||||||
|
%post
|
||||||
|
|
||||||
|
# Ensure the root password is locked, we use cloud-init
|
||||||
|
passwd -l root
|
||||||
|
userdel -r none
|
||||||
|
|
||||||
|
# We copy content of separate /boot partition to root part when building live squashfs image,
|
||||||
|
# and we don't want systemd to try to mount it when pxe booting
|
||||||
|
cat /dev/null > /etc/fstab
|
||||||
|
%end
|
28
fedora-cloud-atomic-vagrant.ks
Normal file
28
fedora-cloud-atomic-vagrant.ks
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Like the Atomic cloud image, but tuned for vagrant. Enable
|
||||||
|
# the vagrant user, disable cloud-init.
|
||||||
|
|
||||||
|
%include fedora-cloud-atomic.ks
|
||||||
|
|
||||||
|
services --disabled=cloud-init,cloud-init-local,cloud-config,cloud-final
|
||||||
|
|
||||||
|
user --name=vagrant --password=vagrant
|
||||||
|
|
||||||
|
%post --erroronfail
|
||||||
|
|
||||||
|
# Work around cloud-init being both disabled and enabled; need
|
||||||
|
# to refactor to a common base.
|
||||||
|
systemctl mask cloud-init cloud-init-local cloud-config cloud-final
|
||||||
|
|
||||||
|
# Vagrant setup
|
||||||
|
sed -i 's,Defaults\\s*requiretty,Defaults !requiretty,' /etc/sudoers
|
||||||
|
echo 'vagrant ALL=NOPASSWD: ALL' > /etc/sudoers.d/vagrant-nopasswd
|
||||||
|
sed -i 's/.*UseDNS.*/UseDNS no/' /etc/ssh/sshd_config
|
||||||
|
mkdir -m 0700 -p ~vagrant/.ssh
|
||||||
|
cat > ~vagrant/.ssh/authorized_keys << EOKEYS
|
||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key
|
||||||
|
EOKEYS
|
||||||
|
chmod 600 ~vagrant/.ssh/authorized_keys
|
||||||
|
chown -R vagrant:vagrant ~vagrant/.ssh/
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
@ -30,14 +30,14 @@ volgroup atomicos pv.01
|
|||||||
logvol / --size=3000 --fstype="xfs" --name=root --vgname=atomicos
|
logvol / --size=3000 --fstype="xfs" --name=root --vgname=atomicos
|
||||||
|
|
||||||
# Equivalent of %include fedora-repo.ks
|
# Equivalent of %include fedora-repo.ks
|
||||||
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/rawhide/ --ref=fedora-atomic/rawhide/x86_64/docker-host
|
ostreesetup --nogpg --osname=fedora-atomic --remote=fedora-atomic --url=http://kojipkgs.fedoraproject.org/mash/atomic/22/ --ref=fedora-atomic/f22/x86_64/docker-host
|
||||||
|
|
||||||
reboot
|
reboot
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
# See https://github.com/projectatomic/rpm-ostree/issues/42
|
# See https://github.com/projectatomic/rpm-ostree/issues/42
|
||||||
ostree remote delete fedora-atomic
|
ostree remote delete fedora-atomic
|
||||||
ostree remote add --set=gpg-verify=false fedora-atomic 'http://dl.fedoraproject.org/pub/fedora/linux/atomic/rawhide/'
|
ostree remote add --set=gpg-verify=false fedora-atomic 'http://dl.fedoraproject.org/pub/fedora/linux/atomic/22/'
|
||||||
|
|
||||||
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
# older versions of livecd-tools do not follow "rootpw --lock" line above
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
# https://bugzilla.redhat.com/show_bug.cgi?id=964299
|
||||||
|
@ -21,7 +21,7 @@ bash
|
|||||||
fedora-release
|
fedora-release
|
||||||
rootfiles
|
rootfiles
|
||||||
vim-minimal
|
vim-minimal
|
||||||
yum
|
dnf
|
||||||
#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
|
#fakesystemd #TODO: waiting for review https://bugzilla.redhat.com/show_bug.cgi?id=1118740
|
||||||
-kernel
|
-kernel
|
||||||
|
|
||||||
|
@ -305,6 +305,9 @@ if [ -x /usr/bin/fc-cache ] ; then
|
|||||||
fc-cache -f
|
fc-cache -f
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo 'File created by kickstart. See systemd-update-done.service(8).' \
|
||||||
|
| tee /etc/.updated >/var/.updated
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
|
||||||
|
@ -113,6 +113,10 @@ cat >> /usr/share/applications/fedora-design-suite.desktop << FOE
|
|||||||
Name=About Design Suite
|
Name=About Design Suite
|
||||||
GenericName=About Design Suite Wiki Page
|
GenericName=About Design Suite Wiki Page
|
||||||
Comment=Wiki page of Design Suite
|
Comment=Wiki page of Design Suite
|
||||||
|
Name=About Design Team
|
||||||
|
GenericName=About Design Team
|
||||||
|
Comment=Wiki page of Design Team
|
||||||
|
>>>>>>> d4d001c54999e8f5401ca3f7b5d9b6a2d0132093
|
||||||
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite
|
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite
|
||||||
Type=Application
|
Type=Application
|
||||||
Icon=applications-internet
|
Icon=applications-internet
|
||||||
@ -125,6 +129,8 @@ cat >> /usr/share/applications/fedora-design-team.desktop << FOE
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=About Design Team
|
Name=About Design Team
|
||||||
GenericName=About Design Team
|
GenericName=About Design Team
|
||||||
|
Name=About Design Suite
|
||||||
|
GenericName=About Design Suite Wiki Page
|
||||||
Comment=Wiki page of Design Team
|
Comment=Wiki page of Design Team
|
||||||
Exec=xdg-open http://fedoraproject.org/wiki/Design
|
Exec=xdg-open http://fedoraproject.org/wiki/Design
|
||||||
Type=Application
|
Type=Application
|
||||||
@ -136,7 +142,5 @@ chmod a+x /usr/share/applications/fedora-design-team.desktop
|
|||||||
# rebuild schema cache with any overrides we installed
|
# rebuild schema cache with any overrides we installed
|
||||||
glib-compile-schemas /usr/share/glib-2.0/schemas
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
||||||
|
|
||||||
#EOF
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
@ -42,12 +42,12 @@ chown liveuser:liveuser /home/liveuser/.xsession
|
|||||||
# set up autologin for user liveuser
|
# set up autologin for user liveuser
|
||||||
if [ -f /etc/sddm.conf ]; then
|
if [ -f /etc/sddm.conf ]; then
|
||||||
sed -i 's/^#User=.*/User=liveuser/' /etc/sddm.conf
|
sed -i 's/^#User=.*/User=liveuser/' /etc/sddm.conf
|
||||||
sed -i 's/^#Session=.*/Session=kde-plasma.desktop/' /etc/sddm.conf
|
sed -i 's/^#Session=.*/Session=plasma.desktop/' /etc/sddm.conf
|
||||||
else
|
else
|
||||||
cat > /etc/sddm.conf << SDDM_EOF
|
cat > /etc/sddm.conf << SDDM_EOF
|
||||||
[Autologin]
|
[Autologin]
|
||||||
User=liveuser
|
User=liveuser
|
||||||
Session=kde-plasma.desktop
|
Session=plasma.desktop
|
||||||
SDDM_EOF
|
SDDM_EOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -12,17 +12,25 @@
|
|||||||
caja-actions
|
caja-actions
|
||||||
mate-disk-usage-analyzer
|
mate-disk-usage-analyzer
|
||||||
mate-netspeed
|
mate-netspeed
|
||||||
|
mate-themes-extras
|
||||||
|
|
||||||
|
# more backgrounds
|
||||||
|
f22-backgrounds-mate
|
||||||
|
f21-backgrounds-extras-base
|
||||||
|
f21-backgrounds-extras-mate
|
||||||
|
|
||||||
# system tools
|
# system tools
|
||||||
system-config-printer
|
system-config-printer
|
||||||
system-config-printer-applet
|
system-config-printer-applet
|
||||||
|
|
||||||
|
|
||||||
# audio player
|
# audio player
|
||||||
audacious
|
audacious
|
||||||
|
|
||||||
# First, no office
|
# office
|
||||||
-planner
|
@libreoffice
|
||||||
|
|
||||||
|
# dsl tools
|
||||||
|
rp-pppoe
|
||||||
|
|
||||||
# Drop things for size
|
# Drop things for size
|
||||||
-@3d-printing
|
-@3d-printing
|
||||||
@ -30,8 +38,6 @@ audacious
|
|||||||
-bluez
|
-bluez
|
||||||
-bluez-cups
|
-bluez-cups
|
||||||
-colord
|
-colord
|
||||||
-@dial-up
|
|
||||||
-espeak
|
|
||||||
-fedora-icon-theme
|
-fedora-icon-theme
|
||||||
-GConf2
|
-GConf2
|
||||||
-gnome-bluetooth-libs
|
-gnome-bluetooth-libs
|
||||||
@ -39,69 +45,28 @@ audacious
|
|||||||
-gnome-icon-theme-symbolic
|
-gnome-icon-theme-symbolic
|
||||||
-gnome-software
|
-gnome-software
|
||||||
-gnome-themes
|
-gnome-themes
|
||||||
|
-gnome-themes-standard
|
||||||
-gnome-user-docs
|
-gnome-user-docs
|
||||||
-gstreamer1-plugins-good
|
|
||||||
-gstreamer1-plugins-bad-free
|
|
||||||
-gstreamer-plugins-good
|
|
||||||
-gstreamer-plugins-bad-free
|
|
||||||
-gstreamer-plugins-espeak
|
|
||||||
-@guest-desktop-agents
|
|
||||||
-@libreoffice
|
|
||||||
-@mate-applications
|
-@mate-applications
|
||||||
-mate-icon-theme-faenza
|
-mate-icon-theme-faenza
|
||||||
-NetworkManager-bluetooth
|
-NetworkManager-bluetooth
|
||||||
-samba-client
|
|
||||||
-ibus-chewing
|
|
||||||
-libical
|
|
||||||
-OpenEXR-libs
|
|
||||||
|
|
||||||
# Drop oversized fonts that aren't needed
|
# Drop oversized fonts that aren't needed
|
||||||
-gnu-free-mono-fonts
|
|
||||||
-gnu-free-fonts-common
|
|
||||||
-gnu-free-serif-fonts
|
|
||||||
-gnu-free-sans-fonts
|
|
||||||
-stix-fonts
|
|
||||||
|
|
||||||
# Drop the Java plugin
|
|
||||||
-icedtea-web
|
|
||||||
-java-1.8.0-openjdk
|
|
||||||
|
|
||||||
# Drop things that pull in perl
|
# Drop things that pull in perl
|
||||||
-linux-atm
|
|
||||||
|
|
||||||
# Dictionaries are big
|
# Dictionaries are big
|
||||||
# we're going to try keeping hunspell-* after notting, davidz, and ajax voiced
|
# we're going to try keeping hunspell-* after notting, davidz, and ajax voiced
|
||||||
# strong preference to giving it a go on #fedora-desktop.
|
# strong preference to giving it a go on #fedora-desktop.
|
||||||
# also see http://bugzilla.gnome.org/681084
|
# also see http://bugzilla.gnome.org/681084
|
||||||
-aspell-*
|
|
||||||
-man-pages*
|
|
||||||
-words
|
|
||||||
|
|
||||||
# Help and art can be big, too
|
# Help and art can be big, too
|
||||||
-gnome-user-docs
|
-gnome-user-docs
|
||||||
-evolution-help
|
-evolution-help
|
||||||
-desktop-backgrounds-basic
|
|
||||||
-*backgrounds-extras
|
|
||||||
|
|
||||||
# Legacy cmdline things we don't want
|
# Legacy cmdline things we don't want
|
||||||
-krb5-auth-dialog
|
-telnet
|
||||||
-krb5-workstation
|
|
||||||
-pam_krb5
|
|
||||||
|
|
||||||
-minicom
|
|
||||||
|
|
||||||
-jwhois
|
|
||||||
-mtr
|
|
||||||
-pinfo
|
|
||||||
-rsh
|
|
||||||
-ypbind
|
|
||||||
-yp-tools
|
|
||||||
-ntsysv
|
|
||||||
|
|
||||||
# Drop some system-config things
|
|
||||||
-system-config-rootpassword
|
|
||||||
-system-config-services
|
|
||||||
-policycoreutils-gui
|
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
|
@ -171,6 +171,10 @@ hevea
|
|||||||
#Include Mozilla Firefox
|
#Include Mozilla Firefox
|
||||||
firefox
|
firefox
|
||||||
|
|
||||||
|
# Omit KDE 4 translations for now: https://bugzilla.redhat.com/show_bug.cgi?id=1197940
|
||||||
|
-kde-l10n-*
|
||||||
|
-calligra-l10n-*
|
||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post
|
%post
|
||||||
|
Loading…
x
Reference in New Issue
Block a user