postrm 113 B

123456789
  1. #!/bin/sh -e
  2. # postrm for rsync
  3. if [ "$1" = "purge" ] ; then
  4. update-rc.d rsync remove >/dev/null
  5. fi
  6. exit 0