/share/examples/hast/ucarp_up.sh

https://bitbucket.org/freebsd/freebsd-head/ · Shell · 105 lines · 62 code · 4 blank · 39 comment · 9 complexity · 816d97662cc3250ed24bc5489f0a48da MD5 · raw file

  1. #!/bin/sh
  2. #
  3. # Copyright (c) 2010 The FreeBSD Foundation
  4. # All rights reserved.
  5. #
  6. # This software was developed by Pawel Jakub Dawidek under sponsorship from
  7. # the FreeBSD Foundation.
  8. #
  9. # Redistribution and use in source and binary forms, with or without
  10. # modification, are permitted provided that the following conditions
  11. # are met:
  12. # 1. Redistributions of source code must retain the above copyright
  13. # notice, this list of conditions and the following disclaimer.
  14. # 2. Redistributions in binary form must reproduce the above copyright
  15. # notice, this list of conditions and the following disclaimer in the
  16. # documentation and/or other materials provided with the distribution.
  17. #
  18. # THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  19. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
  22. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. # SUCH DAMAGE.
  29. #
  30. # $FreeBSD$
  31. # Resource name as defined in /etc/hast.conf.
  32. resource="test"
  33. # Supported file system types: UFS, ZFS
  34. fstype="UFS"
  35. # ZFS pool name. Required only when fstype == ZFS.
  36. pool="test"
  37. # File system mount point. Required only when fstype == UFS.
  38. mountpoint="/mnt/test"
  39. # Name of HAST provider as defined in /etc/hast.conf.
  40. device="/dev/hast/${resource}"
  41. export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
  42. # If there is secondary worker process, it means that remote primary process is
  43. # still running. We have to wait for it to terminate.
  44. for i in `jot 30`; do
  45. pgrep -f "hastd: ${resource} \(secondary\)" >/dev/null 2>&1 || break
  46. sleep 1
  47. done
  48. if pgrep -f "hastd: ${resource} \(secondary\)" >/dev/null 2>&1; then
  49. logger -p local0.error -t hast "Secondary process for resource ${resource} is still running after 30 seconds."
  50. exit 1
  51. fi
  52. logger -p local0.debug -t hast "Secondary process in not running."
  53. # Change role to primary for our resource.
  54. out=`hastctl role primary "${resource}" 2>&1`
  55. if [ $? -ne 0 ]; then
  56. logger -p local0.error -t hast "Unable to change to role to primary for resource ${resource}: ${out}."
  57. exit 1
  58. fi
  59. # Wait few seconds for provider to appear.
  60. for i in `jot 50`; do
  61. [ -c "${device}" ] && break
  62. sleep 0.1
  63. done
  64. if [ ! -c "${device}" ]; then
  65. logger -p local0.error -t hast "Device ${device} didn't appear."
  66. exit 1
  67. fi
  68. logger -p local0.debug -t hast "Role for resource ${resource} changed to primary."
  69. case "${fstype}" in
  70. UFS)
  71. # Check the file system.
  72. fsck -y -t ufs "${device}" >/dev/null 2>&1
  73. if [ $? -ne 0 ]; then
  74. logger -p local0.error -t hast "File system check for resource ${resource} failed."
  75. exit 1
  76. fi
  77. logger -p local0.debug -t hast "File system check for resource ${resource} finished."
  78. # Mount the file system.
  79. out=`mount -t ufs "${device}" "${mountpoint}" 2>&1`
  80. if [ $? -ne 0 ]; then
  81. logger -p local0.error -t hast "File system mount for resource ${resource} failed: ${out}."
  82. exit 1
  83. fi
  84. logger -p local0.debug -t hast "File system for resource ${resource} mounted."
  85. ;;
  86. ZFS)
  87. # Import ZFS pool. Do it forcibly as it remembers hostid of
  88. # the other cluster node.
  89. out=`zpool import -f "${pool}" 2>&1`
  90. if [ $? -ne 0 ]; then
  91. logger -p local0.error -t hast "ZFS pool import for resource ${resource} failed: ${out}."
  92. exit 1
  93. fi
  94. logger -p local0.debug -t hast "ZFS pool for resource ${resource} imported."
  95. ;;
  96. esac
  97. logger -p local0.info -t hast "Successfully switched to primary for resource ${resource}."
  98. exit 0