You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
280 B

  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2009 Stefan Monnier
  3. START=15
  4. start () {
  5. /sbin/lvm vgscan --ignorelockingfailure --mknodes || :
  6. /sbin/lvm vgchange -aly --ignorelockingfailure || return 2
  7. }
  8. stop () {
  9. /sbin/lvm vgchange -aln --ignorelockingfailure || return 2
  10. }