99 lines
2.4 KiB
Bash
99 lines
2.4 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
source /etc/profile
|
||
|
/usr/sbin/env-update && source /etc/profile
|
||
|
|
||
|
# Setup locale to en_US
|
||
|
echo LANG=\"en_US.UTF-8\" > /etc/env.d/02locale
|
||
|
echo LANGUAGE=\"en_US.UTF-8\" >> /etc/env.d/02locale
|
||
|
echo LC_ALL=\"en_US.UTF-8\" >> /etc/env.d/02locale
|
||
|
|
||
|
# remove SSH keys
|
||
|
rm -rf /etc/ssh/*_key*
|
||
|
|
||
|
# better remove postfix package manager generated
|
||
|
# SSL certificates
|
||
|
rm -rf /etc/ssl/postfix/server.*
|
||
|
|
||
|
# make sure postfix only listens on localhost
|
||
|
echo "inet_interfaces = localhost" >> /etc/postfix/main.cf
|
||
|
# do not add it yet to runlevel
|
||
|
# rc-update add postfix default
|
||
|
|
||
|
# allow root logins to the livecd by default
|
||
|
# turn bashlogin shells to actual login shells
|
||
|
sed -i 's:exec -l /bin/bash:exec -l /bin/bash -l:' /bin/bashlogin
|
||
|
|
||
|
# enable cd eject on shutdown/reboot
|
||
|
rc-update add cdeject shutdown
|
||
|
|
||
|
# setup sudoers
|
||
|
[ -e /etc/sudoers ] && sed -i '/NOPASSWD: ALL/ s/^# //' /etc/sudoers
|
||
|
|
||
|
# setup opengl in /etc (if configured)
|
||
|
eselect opengl set xorg-x11 &> /dev/null
|
||
|
|
||
|
# touch /etc/asound.state
|
||
|
touch /etc/asound.state
|
||
|
|
||
|
update-pciids
|
||
|
update-usbids
|
||
|
|
||
|
echo -5 | etc-update
|
||
|
mount -t proc proc /proc
|
||
|
/lib/rc/bin/rc-depend -u
|
||
|
|
||
|
echo "Vacuum cleaning client db"
|
||
|
equo rescue vacuum
|
||
|
|
||
|
# Generate openrc cache
|
||
|
/etc/init.d/savecache start
|
||
|
/etc/init.d/savecache zap
|
||
|
|
||
|
ldconfig
|
||
|
ldconfig
|
||
|
umount /proc
|
||
|
|
||
|
equo deptest --pretend
|
||
|
emaint --fix world
|
||
|
|
||
|
# copy Portage config from sabayonlinux.org entropy repo to system
|
||
|
cp /var/lib/entropy/client/database/*/sabayonlinux.org/standard/*/*/package.mask /etc/portage/package.mask
|
||
|
cp /var/lib/entropy/client/database/*/sabayonlinux.org/standard/*/*/package.unmask /etc/portage/package.unmask
|
||
|
cp /var/lib/entropy/client/database/*/sabayonlinux.org/standard/*/*/package.use /etc/portage/package.use
|
||
|
cp /var/lib/entropy/client/database/*/sabayonlinux.org/standard/*/*/make.conf /etc/make.conf
|
||
|
|
||
|
# Update sabayon overlay
|
||
|
layman -d sabayon
|
||
|
rm -rf /var/lib/layman/sabayon
|
||
|
|
||
|
# Reset users' password
|
||
|
echo "root:" | chpasswd
|
||
|
|
||
|
# protect /var/tmp
|
||
|
touch /var/tmp/.keep
|
||
|
touch /tmp/.keep
|
||
|
chmod 777 /var/tmp
|
||
|
chmod 777 /tmp
|
||
|
|
||
|
# Looks like screen directories are missing
|
||
|
if [ ! -d "/var/run/screen" ]; then
|
||
|
mkdir /var/run/screen
|
||
|
chmod 775 /var/run/screen
|
||
|
chown root:utmp /var/run/screen
|
||
|
fi
|
||
|
|
||
|
# Regenerate Fluxbox menu
|
||
|
if [ -x "/usr/bin/fluxbox-generate_menu" ]; then
|
||
|
fluxbox-generate_menu -o /etc/skel/.fluxbox/menu
|
||
|
fi
|
||
|
|
||
|
equo query list installed -qv > /etc/sabayon-pkglist
|
||
|
|
||
|
rm -rf /var/tmp/entropy/*
|
||
|
rm -rf /var/lib/entropy/logs
|
||
|
rm -rf /var/lib/entropy/glsa
|
||
|
rm -rf /var/lib/entropy/tmp
|
||
|
|
||
|
exit 0
|