Advertisement
Guest User

Untitled

a guest
May 2nd, 2010
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | None | 0 0
  1. post_install()
  2. {
  3.  
  4.     echo -n "module test... "
  5.  
  6.     perl -mConvert::BinHex -e "exit 0;" 2> /dev/null && echo 'pass.' || echo 'fail.'
  7.  
  8. }
  9.  
  10. post_upgrade()
  11. {
  12.     post_install
  13. }
  14.  
  15. op=$1
  16.  
  17. shift
  18.  
  19. $op $*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement