updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / portage-git / portage-git.install
blob2441000c41981548f7f09a094af770e97202477b
1 # arg 1:  the new package version
2 post_install()
4 echo "For the defaults, line 1 goes into passwd, and 2 into group."
5 echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false"
6 echo "portage::250:portage"
7 echo ""
10 post_remove()
12 echo "Do you want to purge the ebuild storage folder?[y/n]"
13 read input
14 if [ "$input" == "y" ] ; then 
15   rm -r /usr/portage
16   echo "Purged!"
17 else
18   echo "Nothing to do!See you later cowboy"