2011-08-09 21:37:43 +00:00
|
|
|
## runtime-postinstall.tmpl
|
|
|
|
## post-install setup required to make the system work.
|
|
|
|
|
2011-07-25 23:39:48 +00:00
|
|
|
<%page args="root, basearch, libdir, configdir"/>
|
2011-05-05 22:24:58 +00:00
|
|
|
<%
|
2011-07-25 23:44:14 +00:00
|
|
|
PYTHONDIR = glob("usr/"+libdir+"/python?.?")[0]
|
2012-04-17 18:39:04 +00:00
|
|
|
stubs = ("list-harddrives", "raidstart", "raidstop")
|
2011-10-21 20:12:12 +00:00
|
|
|
configdir = configdir + "/common"
|
2011-05-05 22:24:58 +00:00
|
|
|
%>
|
|
|
|
|
|
|
|
## move_stubs()
|
|
|
|
move usr/share/anaconda/restart-anaconda usr/bin
|
|
|
|
move ${PYTHONDIR}/site-packages/pyanaconda/sitecustomize.py ${PYTHONDIR}/site-packages
|
|
|
|
%for stub in stubs:
|
2011-10-26 17:06:05 +00:00
|
|
|
-move usr/share/anaconda/${stub}-stub usr/bin/${stub}
|
2011-05-05 22:24:58 +00:00
|
|
|
%endfor
|
|
|
|
|
|
|
|
## move_repos()
|
|
|
|
move etc/yum.repos.d etc/anaconda.repos.d
|
|
|
|
|
2011-09-08 00:36:22 +00:00
|
|
|
## Configure systemd to start anaconda
|
|
|
|
remove etc/systemd/system/default.target
|
|
|
|
symlink /lib/systemd/system/anaconda.target etc/systemd/system/default.target
|
2012-06-19 19:14:27 +00:00
|
|
|
|
2013-02-14 17:50:19 +00:00
|
|
|
## Make sure tmpfs is enabled
|
|
|
|
mkdir etc/systemd/system/local-fs.target.wants/
|
|
|
|
symlink /lib/systemd/system/tmp.mount etc/systemd/system/local-fs.target.wants/tmp.mount
|
|
|
|
|
2012-06-19 19:14:27 +00:00
|
|
|
## Disable unwanted systemd services
|
|
|
|
systemctl disable systemd-readahead-collect.service \
|
|
|
|
systemd-readahead-replay.service \
|
|
|
|
mdmonitor.service \
|
|
|
|
mdmonitor-takeover.service \
|
|
|
|
lvm2-monitor.service
|
|
|
|
## These services can't be disabled normally (they're linked into place in
|
|
|
|
## /usr/lib/systemd rather than /etc/systemd), so we have to mask them.
|
2014-02-17 18:21:37 +00:00
|
|
|
systemctl mask rhel-configure.service rhel-loadmodules.service \
|
|
|
|
rhel-autorelabel.service rhel-autorelabel-mark.service \
|
|
|
|
rhel-wait-storage.service media.mount
|
2011-08-09 21:37:43 +00:00
|
|
|
|
2014-01-10 19:54:26 +00:00
|
|
|
## Make logind activate anaconda-shell@.service on switch to empty VT
|
|
|
|
symlink anaconda-shell@.service lib/systemd/system/autovt@.service
|
|
|
|
replace "#ReserveVT=6" "ReserveVT=2" etc/systemd/logind.conf
|
|
|
|
|
2013-04-23 18:29:00 +00:00
|
|
|
## Don't write the journal to the overlay, just keep it in RAM
|
|
|
|
remove var/log/journal
|
|
|
|
|
2011-08-09 21:37:43 +00:00
|
|
|
## install some basic configuration files
|
2011-05-05 22:24:58 +00:00
|
|
|
append etc/resolv.conf ""
|
2012-06-19 23:48:13 +00:00
|
|
|
append etc/fstab ""
|
2011-10-31 14:55:15 +00:00
|
|
|
install ${configdir}/i18n etc/sysconfig
|
2011-05-05 22:24:58 +00:00
|
|
|
install ${configdir}/rsyslog.conf etc
|
2011-10-21 20:12:12 +00:00
|
|
|
install ${configdir}/bash_history root/.bash_history
|
|
|
|
install ${configdir}/profile root/.profile
|
2011-05-05 22:24:58 +00:00
|
|
|
install ${configdir}/libuser.conf etc
|
2012-04-25 20:21:27 +00:00
|
|
|
install ${configdir}/sysctl.conf etc/sysctl.d/anaconda.conf
|
2014-01-30 11:24:13 +00:00
|
|
|
mkdir etc/NetworkManager/conf.d
|
|
|
|
install ${configdir}/90-anaconda-no-auto-default.conf etc/NetworkManager/conf.d
|
2011-05-05 22:24:58 +00:00
|
|
|
%if exists(root+"/etc/selinux/targeted"):
|
|
|
|
install ${configdir}/selinux.config etc/selinux/config
|
|
|
|
%endif
|
|
|
|
|
2011-08-09 21:37:43 +00:00
|
|
|
## set up sshd
|
2011-05-05 22:24:58 +00:00
|
|
|
install ${configdir}/sshd_config.anaconda etc/ssh
|
|
|
|
install ${configdir}/pam.sshd etc/pam.d/sshd
|
|
|
|
install ${configdir}/pam.sshd etc/pam.d/login
|
|
|
|
install ${configdir}/pam.sshd etc/pam.d/remote
|
2011-11-02 18:48:13 +00:00
|
|
|
|
|
|
|
## set up "install" user account
|
2012-10-11 17:18:17 +00:00
|
|
|
append etc/passwd "install:x:0:0:root:/root:/usr/libexec/anaconda/run-anaconda"
|
2011-05-05 22:24:58 +00:00
|
|
|
append etc/shadow "install::14438:0:99999:7:::"
|
2011-11-02 18:48:13 +00:00
|
|
|
## remove root password
|
2011-11-07 15:58:51 +00:00
|
|
|
replace "root:\*:" "root::" etc/shadow
|
2011-05-05 22:24:58 +00:00
|
|
|
|
2011-08-09 21:37:43 +00:00
|
|
|
## s390-specific setup
|
2011-07-25 23:44:14 +00:00
|
|
|
%if basearch in ("s390", "s390x"):
|
2011-05-27 15:03:38 +00:00
|
|
|
## generate ssh keys
|
|
|
|
runcmd ssh-keygen -q -C "" -N "" -t rsa1 -f ${root}/etc/ssh/ssh_host_key
|
|
|
|
runcmd ssh-keygen -q -C "" -N "" -t rsa -f ${root}/etc/ssh/ssh_host_rsa_key
|
|
|
|
runcmd ssh-keygen -q -C "" -N "" -t dsa -f ${root}/etc/ssh/ssh_host_dsa_key
|
|
|
|
chmod etc/ssh/ssh_host*_key 600
|
|
|
|
chmod etc/ssh/ssh_host*_key.pub 644
|
2011-05-05 22:24:58 +00:00
|
|
|
%endif
|
|
|
|
|
2011-08-09 21:37:43 +00:00
|
|
|
## gconf settings
|
|
|
|
gconfset /apps/metacity/general/button_layout string :
|
|
|
|
gconfset /apps/metacity/general/action_right_click_titlebar string none
|
|
|
|
gconfset /apps/metacity/general/num_workspaces int 1
|
|
|
|
gconfset /apps/metacity/window_keybindings/close string disabled
|
|
|
|
gconfset /apps/metacity/global_keybindings/run_command_window_screenshot string disabled
|
|
|
|
gconfset /apps/metacity/global_keybindings/run_command_screenshot string disabled
|
|
|
|
gconfset /apps/metacity/global_keybindings/switch_to_workspace_up string disabled
|
|
|
|
gconfset /apps/metacity/global_keybindings/switch_to_workspace_down string disabled
|
|
|
|
gconfset /apps/metacity/global_keybindings/switch_to_workspace_left string disabled
|
|
|
|
gconfset /apps/metacity/global_keybindings/switch_to_workspace_right string disabled
|
2012-06-11 07:55:10 +00:00
|
|
|
gconfset /apps/metacity/global_keybindings/switch_windows string disabled
|
2011-08-09 21:37:43 +00:00
|
|
|
gconfset /desktop/gnome/interface/accessibility bool true
|
|
|
|
gconfset /desktop/gnome/interface/at-spi-corba bool true
|
|
|
|
|
2012-08-31 18:42:11 +00:00
|
|
|
## Some settings are controlled by gsettings now.
|
|
|
|
install ${configdir}/org.gnome.desktop.wm.keybindings.gschema.override usr/share/glib-2.0/schemas
|
|
|
|
runcmd chroot ${root} glib-compile-schemas /usr/share/glib-2.0/schemas
|
|
|
|
|
2011-05-05 22:24:58 +00:00
|
|
|
move usr/libexec/anaconda/auditd sbin
|
|
|
|
|
2011-10-18 20:31:50 +00:00
|
|
|
## for compatibility with Ancient Anaconda Traditions
|
2011-10-26 17:57:46 +00:00
|
|
|
symlink lib/modules /modules
|
|
|
|
symlink lib/firmware /firmware
|
2012-03-19 18:22:52 +00:00
|
|
|
symlink ../run/install mnt/install
|
2011-05-14 07:25:44 +00:00
|
|
|
|
2011-05-27 15:03:38 +00:00
|
|
|
## create_depmod_conf()
|
|
|
|
append etc/depmod.d/dd.conf "search updates built-in"
|
2011-06-30 20:05:43 +00:00
|
|
|
|
2013-03-06 22:20:49 +00:00
|
|
|
## create multipath.conf so multipath gets auto-started
|
|
|
|
append etc/multipath.conf "defaults {\n\tfind_multipaths yes\n\tuser_friendly_names yes\n}\n"
|
|
|
|
|
|
|
|
## make lvm auto-activate
|
|
|
|
remove etc/lvm/*
|
|
|
|
append etc/lvm/lvm.conf "global {\n\tuse_lvmetad = 1\n}\n"
|
|
|
|
|
2011-06-30 20:05:43 +00:00
|
|
|
## TODO: we could run prelink here if we wanted?
|