File: postrm

package info (click to toggle)
rsync 3.0.9-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,352 kB
  • sloc: ansic: 35,959; sh: 4,980; perl: 1,662; makefile: 315; python: 83
file content (8 lines) | stat: -rw-r--r-- 113 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/sh -e
# postrm for rsync

if [ "$1" = "purge" ] ; then
    update-rc.d rsync remove >/dev/null
fi

exit 0