2010-09-17 13:40:17 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
/usr/sbin/env-update && source /etc/profile
|
|
|
|
|
|
|
|
# Generate list of installed packages
|
|
|
|
equo query list installed -qv > /etc/sabayon-pkglist
|
2011-07-10 11:30:23 +02:00
|
|
|
|
|
|
|
# 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
|