udev.postinst 218 B

1234567891011
  1. #!/bin/sh
  2. # Begin section update-rc.d
  3. if type update-rc.d >/dev/null 2>/dev/null; then
  4. if [ -n "$D" ]; then
  5. OPT="-r $D"
  6. else
  7. OPT="-s"
  8. fi
  9. update-rc.d $OPT systemd-udevd start 03 S .
  10. fi
  11. # End section update-rc.d