udev.postrm 161 B

123456789
  1. #!/bin/sh
  2. if type update-rc.d >/dev/null 2>/dev/null; then
  3. if [ -n "$D" ]; then
  4. OPT="-f -r $D"
  5. else
  6. OPT="-f"
  7. fi
  8. update-rc.d $OPT systemd-udevd remove
  9. fi