]> piware.de Git - bin.git/blob - postinst-setup-fedora
retry-gh-systemd-test: Run biebl/meson branch for s390x
[bin.git] / postinst-setup-fedora
1 #!/bin/sh
2 set -e
3
4 # remove stuff that we do not need
5 dnf remove -y mdadm mlocate nano rsyslog sssd telnet trousers rxvt-unicode abrt plymouth linux-atm-libs quota realmd selinux-policy || true
6
7 # install stuff that we do want
8 dnf install -y iwl6000g2a-firmware NetworkManager-wifi \
9     sudo ecryptfs-utils vim-enhanced iwl6000g2a-firmware \
10     xorg-x11-server-Xorg xorg-x11-drv-libinput xorg-x11-drv-intel \
11     dejavu-sans-fonts dejavu-serif-fonts dejavu-sans-mono-fonts \
12     xorg-x11-server-utils xorg-x11-utils xbacklight \
13     i3 i3lock lxdm wmctrl dunst pcmanfm gvfs-mtp \
14     pavucontrol pulseaudio-utils alsa-plugins-pulseaudio \
15     gstreamer1-plugin-mpg123 gstreamer1-plugins-good \
16     qemu-kvm qemu-img openvpn mutt weechat pidgin-otr \
17     simple-scan sane-backends sane-backends-drivers-scanners \
18     pandoc texlive-beamer texlive-latex-bin texlive-collection-fontsrecommended \
19     texlive-hyphen-german texlive-hyphen-english texlive-fancyhdr texlive-dinbrief \
20     gnome-terminal firefox network-manager-applet evince shotwell rhythmbox \
21     offlineimap gnome-keyring pinentry-gnome3 \
22     postfix duplicity systemd-container gnome-disk-utility powertop \
23     git gtimelog libappindicator-gtk3 \
24     schroot mock \
25
26 # codecs
27 dnf install -y http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
28 dnf install -y gstreamer1-{libav,plugins-{ugly,bad-free}} --setopt=strict=0
29
30 # TODO: restore /etc git
31
32 # other setup
33 grep -q /ubuntu /etc/fstab || cat << EOF >> /etc/fstab
34
35 tmpfs /var/tmp tmpfs defaults 0 0
36 tmpfs /var/lib/mock tmpfs defaults 0 0
37 /proc /ubuntu/proc none bind 0 0
38 /sys /ubuntu/sys none bind 0 0
39 /dev /ubuntu/dev none rbind 0 0
40 /home /ubuntu/home none rbind 0 0
41 /srv /ubuntu/srv none bind 0 0
42 /tmp /ubuntu/tmp none bind 0 0
43 EOF
44
45 systemctl enable ubuntu-apt-cacher-ng
46
47 # have schroot use tmpfs
48 rmdir /var/lib/schroot/unpack
49 ln -s /tmp /var/lib/schroot/unpack
50
51 # root's ssh stuff
52 if [ ! -d /root/.ssh ] && [ -d /home/martin/.ssh ]; then
53     mkdir -p /root/.ssh
54     chmod 700 /root/.ssh
55     cp /home/martin/.ssh/id_rsa* /home/martin/.ssh/known_hosts /home/martin/.ssh/config /root/.ssh/
56 fi
57
58 # disable SELinux to unbreak ecryptfs
59 sed -i '/^SELINUX=/ s/=.*$/=disabled/' /etc/selinux/config
60 setenforce 0 || true
61
62 rm -f /etc/systemd/system/default.target
63 systemctl set-default graphical.target
64
65 systemctl enable --now postfix
66
67 # Red Hat VPN certs and connections
68 rpm -i ~martin/Dokumente/Arbeit/RedHat/redhat-internal*.rpm
69
70 # create user
71 groupadd --gid 1000 martin
72 useradd --comment "Martin Pitt" --uid 1000 --gid 1000 --groups wheel,ecryptfs,mock martin
73 passwd martin
74
75 # crontabs
76 crontab -u martin - <<EOF
77 # m h  dom mon dow   command
78 05 * * * * \$HOME/bin/backup >/dev/null
79 EOF