Sha256: 0fa99c63359f4ac397b33cc624516f6974ef83cc69188b8679d65143ce06af3d

Contents?: true

Size: 544 Bytes

Versions: 1

Compression:

Stored size: 544 Bytes

Contents

#!/bin/bash
source /etc/profile

# fix a weird issue with sshd not starting
# http://www.linuxquestions.org/questions/linux-networking-3/sshd-fatal-daemon-failed-no-such-device-279664/
chroot "$chroot" /bin/bash <<DATAEOF
rm -f /dev/null
mknod /dev/null c 1 3
chmod 0666 /dev/null
DATAEOF

# skip all the news
chroot "$chroot" /usr/bin/eselect news read all

# cleanup
chroot "$chroot" /bin/bash <<DATAEOF
# delete temp, cached and build artifact data
eclean -d distfiles
rm /tmp/*
rm -rf /var/log/*
rm -rf /var/tmp/*
rm -rf /root/.gem
DATAEOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
veewee-0.3.10 templates/gentoo-latest-amd64/cleanup.sh