build_pkg.sh 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. #!/bin/bash
  2. ############################################################################
  3. #
  4. # Title: Build Package Script for macOS
  5. # Authors: CR Oldham, Shane Lee
  6. # Date: December 2015
  7. #
  8. # Description: This creates an macOS package for Salt from the contents of
  9. # /opt/salt
  10. #
  11. # Requirements:
  12. # - Xcode Command Line Tools (xcode-select --install)
  13. #
  14. # Usage:
  15. # This script can be passed 2 parameters
  16. # $1 : <version> : the version name to give the package (overrides
  17. # version of the git repo) (Defaults to the git repo version)
  18. # $2 : <package dir> : the staging area for the package defaults to
  19. # /tmp/salt_pkg
  20. #
  21. # Example:
  22. # The following will build Salt version 2017.7.0 with Python 3 and
  23. # stage all files in /tmp/salt_pkg:
  24. #
  25. # ./build.sh 2017.7.0 3
  26. #
  27. ############################################################################
  28. ############################################################################
  29. # Make sure the script is launched with sudo
  30. ############################################################################
  31. if [[ $(id -u) -ne 0 ]]
  32. then
  33. exec sudo /bin/bash -c "$(printf '%q ' "$BASH_SOURCE" "$@")"
  34. fi
  35. ############################################################################
  36. # Set to Exit on all Errors
  37. ############################################################################
  38. trap 'quit_on_error $LINENO $BASH_COMMAND' ERR
  39. quit_on_error() {
  40. echo "$(basename $0) caught error on line : $1 command was: $2"
  41. exit -1
  42. }
  43. ############################################################################
  44. # Check passed parameters, set defaults
  45. ############################################################################
  46. # Get/Set Version
  47. if [ "$1" == "" ]; then
  48. VERSION=`git describe`
  49. else
  50. VERSION=$1
  51. fi
  52. # Get/Set temp directory
  53. if [ "$2" == "" ]; then
  54. PKGDIR=/tmp/salt_pkg
  55. else
  56. PKGDIR=$2
  57. fi
  58. CPUARCH=`uname -m`
  59. ############################################################################
  60. # Additional Parameters Required for the script to function properly
  61. ############################################################################
  62. echo -n -e "\033]0;Build_Pkg: Variables\007"
  63. SRCDIR=`git rev-parse --show-toplevel`
  64. PKGRESOURCES=$SRCDIR/pkg/osx
  65. ############################################################################
  66. # Make sure this is the Salt Repository
  67. ############################################################################
  68. if [[ ! -e "$SRCDIR/.git" ]] && [[ ! -e "$SRCDIR/scripts/salt" ]]; then
  69. echo "This directory doesn't appear to be a git repository."
  70. echo "The macOS build process needs some files from a Git checkout of Salt."
  71. echo "Run this script from the 'pkg/osx' directory of the Git checkout."
  72. exit -1
  73. fi
  74. ############################################################################
  75. # Ensure Paths are present and clean
  76. ############################################################################
  77. echo -n -e "\033]0;Build_Pkg: Clean Staging Area\007"
  78. # Clean folder in the staging area
  79. rm -rdf $PKGDIR
  80. mkdir -p $PKGDIR
  81. ############################################################################
  82. # Copy Start Scripts from Salt Repo to /opt/salt
  83. ############################################################################
  84. echo -n -e "\033]0;Build_Pkg: Copy Start Scripts\007"
  85. cp $PKGRESOURCES/scripts/start-*.sh /opt/salt/bin/
  86. cp $PKGRESOURCES/scripts/salt-config.sh /opt/salt/bin
  87. ############################################################################
  88. # Copy Service Definitions from Salt Repo to the Package Directory
  89. ############################################################################
  90. echo -n -e "\033]0;Build_Pkg: Copy Service Definitions\007"
  91. mkdir -p $PKGDIR/opt
  92. cp -r /opt/salt $PKGDIR/opt
  93. mkdir -p $PKGDIR/Library/LaunchDaemons $PKGDIR/etc
  94. cp $PKGRESOURCES/scripts/com.saltstack.salt.minion.plist $PKGDIR/Library/LaunchDaemons
  95. cp $PKGRESOURCES/scripts/com.saltstack.salt.master.plist $PKGDIR/Library/LaunchDaemons
  96. cp $PKGRESOURCES/scripts/com.saltstack.salt.syndic.plist $PKGDIR/Library/LaunchDaemons
  97. cp $PKGRESOURCES/scripts/com.saltstack.salt.api.plist $PKGDIR/Library/LaunchDaemons
  98. ############################################################################
  99. # Remove unnecessary files from the package
  100. ############################################################################
  101. echo -n -e "\033]0;Build_Pkg: Trim unneeded files\007"
  102. rm -rdf $PKGDIR/opt/salt/bin/pkg-config
  103. rm -rdf $PKGDIR/opt/salt/lib/pkgconfig
  104. rm -rdf $PKGDIR/opt/salt/lib/engines
  105. rm -rdf $PKGDIR/opt/salt/share/aclocal
  106. rm -rdf $PKGDIR/opt/salt/share/doc
  107. rm -rdf $PKGDIR/opt/salt/share/man/man1/pkg-config.1
  108. rm -rdf $PKGDIR/opt/salt/lib/python3.7/test
  109. echo -n -e "\033]0;Build_Pkg: Remove compiled python files\007"
  110. find $PKGDIR/opt/salt -name '*.pyc' -type f -delete
  111. ############################################################################
  112. # Copy Config Files from Salt Repo to the Package Directory
  113. ############################################################################
  114. echo -n -e "\033]0;Build_Pkg: Copy Config Files\007"
  115. mkdir -p $PKGDIR/etc/salt
  116. cp $SRCDIR/conf/minion $PKGDIR/etc/salt/minion.dist
  117. cp $SRCDIR/conf/master $PKGDIR/etc/salt/master.dist
  118. ############################################################################
  119. # Add Version and CPU Arch to distribution.xml
  120. ############################################################################
  121. echo -n -e "\033]0;Build_Pkg: Add Version to .xml\007"
  122. TITLE="Salt $VERSION (Python 3)"
  123. DESC="Salt $VERSION with Python 3"
  124. cd $PKGRESOURCES
  125. cp distribution.xml.dist distribution.xml
  126. SEDSTR="s/@TITLE@/$TITLE/g"
  127. sed -E -i '' "$SEDSTR" distribution.xml
  128. SEDSTR="s/@DESC@/$DESC/g"
  129. sed -E -i '' "$SEDSTR" distribution.xml
  130. SEDSTR="s/@VERSION@/$VERSION/g"
  131. sed -E -i '' "$SEDSTR" distribution.xml
  132. SEDSTR="s/@CPUARCH@/$CPUARCH/g"
  133. sed -i '' "$SEDSTR" distribution.xml
  134. ############################################################################
  135. # Build the Package
  136. ############################################################################
  137. echo -n -e "\033]0;Build_Pkg: Build Package\007"
  138. pkgbuild --root=$PKGDIR \
  139. --scripts=pkg-scripts \
  140. --identifier=com.saltstack.salt \
  141. --version=$VERSION \
  142. --ownership=recommended salt-src-$VERSION-py3-$CPUARCH.pkg
  143. productbuild --resources=pkg-resources \
  144. --distribution=distribution.xml \
  145. --package-path=salt-src-$VERSION-py3-$CPUARCH.pkg \
  146. --version=$VERSION salt-$VERSION-py3-$CPUARCH.pkg