05_mount_skip 193 B

12345678910111213
  1. #!/bin/sh
  2. # Copyright (C) 2006 OpenWrt.org
  3. # Copyright (C) 2010 Vertical Communications
  4. check_skip() {
  5. if [ "$pi_mount_skip_next" = "true" ]; then
  6. return 0
  7. else
  8. return 1
  9. fi
  10. }