Sha256: dd3a22233a7b02b99bdc743c9239d6092ba0291d920e66d53b1368d479815d3c

Contents?: true

Size: 543 Bytes

Versions: 5

Compression:

Stored size: 543 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

5 entries across 3 versions & 2 rubygems

Version Path
veewee-0.3.10 templates/gentoo-latest-i686/cleanup.sh
veewee-0.3.9 templates/gentoo-latest-amd64/cleanup.sh
veewee-0.3.9 templates/gentoo-latest-i686/cleanup.sh
veewee-atlassian-0.3.11 templates/gentoo-latest-i686-experimental/cleanup.sh
veewee-atlassian-0.3.11 templates/gentoo-latest-x86_64-experimental/cleanup.sh