This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
boostbuild:common.copy /opt/pl-build-tools/arm-linux-gnueabihf/share/boost-build/src/build/errors.py | |
boostbuild: cp "/var/tmp/tmp.Bg8e2NVXnm/boost_1_58_0/tools/build/src/build/errors.py" "/opt/pl-build-tools/arm-linux-gnueabihf/share/boost-build/src/build/errors.py" | |
boostbuild:common.copy /opt/pl-build-tools/arm-linux-gnueabihf/share/boost-build/src/kernel/errors.jam | |
boostbuild: cp "/var/tmp/tmp.Bg8e2NVXnm/boost_1_58_0/tools/build/src/kernel/errors.jam" "/opt/pl-build-tools/arm-linux-gnueabihf/share/boost-build/src/kernel/errors.jam" | |
boostbuild:common.copy /opt/pl-build-tools/arm-linux-gnueabihf/include/boost/exception/get_error_info.hpp | |
boostbuild: cp "/var/tmp/tmp.Bg8e2NVXnm/boost_1_58_0/boost/exception/get_error_info.hpp" "/opt/pl-build-tools/arm-linux-gnueabihf/include/boost/exception/get_error_info.hpp" | |
boostbuild:common.copy /opt/pl-build-tools/arm-linux-gnueabihf/include/boost/exception/enable_error_info.hpp | |
boostbuild: cp "/var/tmp/tmp.Bg8e2NVXnm/boost_1_58_0/boost/exception/enable_erro |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading boost | |
Executing 'echo 'deb http://10.32.170.59:8080/ jessie main' > /etc/apt/sources.list.d/buildtools.list && curl -o /etc/apt/trusted.gpg.d/pl-build-tools-keyring.gpg -L http://puppetlabs-stahnma.s3.amazonaws.com/pl-build-tools-keyring.gpg && export DEBIAN_FRONTEND=noninteractive; apt-get update ; apt-get install -y --no-install-recommends build-essential devscripts make quilt pkg-config debhelper rsync fakeroot' on '[email protected]' | |
Warning: Permanently added 'fx8d6p3u3hj36n5.delivery.puppetlabs.net,10.32.126.188' (ECDSA) to the list of known hosts. | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed | |
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 1182 100 1182 0 0 5596 0 --:--:-- --:--:-- --:--:-- 5601 | |
Get:1 http://10.32.170.59:8080 jessie InRelease [7,301 B] | |
Get:2 http://osmirror.delivery.puppetlabs.net jessie |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading gmp | |
Loading mpfr | |
Loading mpc | |
Loading gcc | |
Loading sysroot | |
sysroot base is /opt/pl-build-tools/arm-linux-gnueabihf/sysroot | |
Executing 'curl -O -L http://puppetlabs-stahnma.s3.amazonaws.com/pl-binutils-armhf_2.26-1jessie_all.deb; dpkg -i pl-bin*deb && export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install -qy --no-install-recommends build-essential devscripts make quilt pkg-config debhelper rsync fakeroot' on '[email protected]' | |
Warning: Permanently added 'tc0bujxhj15ww8z.delivery.puppetlabs.net,10.32.114.45' (ECDSA) to the list of known hosts. | |
% Total % Received % Xferd Average Speed Time Time Time Current | |
Dload Upload Total Spent Left Speed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading consul | |
Loading web_ui | |
Executing 'rm -rf /etc/consul /opt/consul && pkg install -y rsync git gmake coreutils bash && chsh -s /usr/local/bin/bash' on 'root@fb1' | |
Warning: Permanently added 'fb1,10.32.170.246' (ECDSA) to the list of known hosts. | |
Updating FreeBSD repository catalogue... | |
FreeBSD repository is up-to-date. | |
All repositories are up-to-date. | |
Checking integrity... done (0 conflicting) | |
The most recent version of packages are already installed | |
chsh: user information updated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Vanagon | |
class Platform | |
class FREEBSD < Vanagon::Platform | |
# The specific bits used to generate a freebsd package for a given project | |
# | |
# @param project [Vanagon::Project] project to build a freebsd package of | |
# @return [Array] list of commands required to build a freebsd package for the given project from a tarball | |
def generate_package(project) | |
target_dir = project.repo ? output_dir(project.repo) : output_dir | |
pkg_arch_opt = project.noarch ? "" : "-a#{@architecture}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Vanagon | |
class Platform | |
class FREEBSD < Vanagon::Platform | |
# The specific bits used to generate a freebsd package for a given project | |
# | |
# @param project [Vanagon::Project] project to build a freebsd package of | |
# @return [Array] list of commands required to build a freebsd package for the given project from a tarball | |
def generate_package(project) | |
target_dir = project.repo ? output_dir(project.repo) : output_dir | |
pkg_arch_opt = project.noarch ? "" : "-a#{@architecture}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ans=`curl -s http://localhost:8500/v1/status/leader` | |
if [ "$?" = "0" ] ; then | |
ip=$(echo $ans | cut -d: -f1 | sed -e 's/"//g') | |
consul members | grep $ip | awk '{print $1}' | |
fi | |
exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PATH=$PATH:/usr/local/bin | |
[ $# -eq 0 ] && { echo "Usage: $0 pkg"; exit 1; } | |
osx_ver=$(sw_vers -productVersion | cut -f1,2 -d.) | |
url=http://pl-build-tools.delivery.puppetlabs.net/osx/$osx_ver | |
for pkg in "$@"; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AVAILABLE PLUGINS | |
----------------- | |
PluginChromeSha1Deprecation | |
PluginHeartbleed | |
PluginCertInfo | |
PluginSessionResumption |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AVAILABLE PLUGINS | |
----------------- | |
PluginHSTS | |
PluginChromeSha1Deprecation | |
PluginSessionRenegotiation | |
PluginOpenSSLCipherSuites |