2011-07-22 13:40:47 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "Configuring AMI chroot"
|
|
|
|
echo
|
|
|
|
|
|
|
|
/usr/sbin/env-update && source /etc/profile
|
|
|
|
|
|
|
|
# setup networking, make sure networkmanager is gone
|
|
|
|
rc-update del networkmanager default &> /dev/null
|
|
|
|
# add eth0, should get dhcp by default already
|
|
|
|
rc-update add net.eth0 default
|
|
|
|
|
|
|
|
# drop other useless services
|
|
|
|
rc-update del sabayonlive boot
|
|
|
|
rc-update del x-setup boot
|
|
|
|
|
|
|
|
# Enable ssh
|
|
|
|
rc-update add sshd default
|
|
|
|
|
2011-08-01 10:23:29 +02:00
|
|
|
# delete root password, only ssh allowed
|
|
|
|
passwd -d root
|
2011-07-22 13:40:47 +02:00
|
|
|
|
|
|
|
# setup UTC clock
|
|
|
|
sed -i 's:clock=".*":clock="UTC":' /etc/conf.d/hwclock || exit 1
|
|
|
|
|
|
|
|
# setup fstab
|
|
|
|
# TODO: really needed?
|
|
|
|
echo "# molecule generated fstab
|
|
|
|
/dev/sda1 / ext3 defaults 1 1
|
|
|
|
/dev/sdb /mnt ext3 defaults 0 0
|
|
|
|
none /dev/shm tmpfs defaults 0 0" > /etc/fstab
|
|
|
|
|
|
|
|
echo -5 | equo conf update
|
|
|
|
mount -t proc proc /proc
|
|
|
|
|
|
|
|
export ETP_NONINTERACTIVE=1
|
|
|
|
|
|
|
|
# need to install grub-1
|
|
|
|
equo install sys-boot/grub:0 || exit 1
|
|
|
|
# remove grub-2
|
|
|
|
equo remove sys-boot/grub:2 --nodeps --force-system || exit 1
|
|
|
|
|
|
|
|
# configure grub-1 config
|
|
|
|
kernel_bin=$(ls /boot/kernel-genkernel-* | sort | tail -n 1)
|
|
|
|
# we need a bzImage
|
|
|
|
#initrd_bin=$(ls /boot/initramfs-genkernel-* | sort | tail -n 1)
|
|
|
|
rm -f /boot/grub/grub.cfg
|
|
|
|
echo "default 0
|
|
|
|
timeout 3
|
|
|
|
title EC2
|
|
|
|
root (hd0)
|
|
|
|
kernel ${kernel_bin} root=/dev/sda1
|
|
|
|
" > /boot/grub/grub.conf
|
|
|
|
# initrd ${initrd_bin}
|
|
|
|
|
|
|
|
# Generate list of installed packages
|
|
|
|
equo query list installed -qv > /etc/sabayon-pkglist
|
|
|
|
|
|
|
|
/lib/rc/bin/rc-depend -u
|
|
|
|
|
|
|
|
echo "Vacuum cleaning client db"
|
|
|
|
rm /var/lib/entropy/client/database/*/sabayonlinux.org -rf
|
|
|
|
rm /var/lib/entropy/client/database/*/sabayon-weekly -rf
|
|
|
|
equo rescue vacuum
|
|
|
|
|
|
|
|
# restore original repositories.conf (all mirrors were filtered for speed)
|
|
|
|
cp /etc/entropy/repositories.conf.example /etc/entropy/repositories.conf || exit 1
|
|
|
|
|
|
|
|
# cleanup log dir
|
|
|
|
rm /var/lib/entropy/logs -rf
|
|
|
|
|
|
|
|
# Generate openrc cache
|
|
|
|
touch /lib/rc/init.d/softlevel
|
|
|
|
/etc/init.d/savecache start
|
|
|
|
/etc/init.d/savecache zap
|
|
|
|
|
|
|
|
ldconfig
|
|
|
|
ldconfig
|
|
|
|
umount /proc
|
|
|
|
|
|
|
|
|
|
|
|
# remove hw hash
|
|
|
|
rm -f /etc/entropy/.hw.hash
|
2011-08-31 11:43:03 +02:00
|
|
|
# remove entropy pid file
|
|
|
|
rm -f /var/run/entropy/entropy.lock
|
|
|
|
|
|
|
|
exit 0
|