File: postrm

package info (click to toggle)
rsync 3.1.1-3%2Bdeb8u1
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 3,756 kB
  • sloc: ansic: 40,013; sh: 5,483; perl: 1,900; makefile: 340; 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