From 758e36b78cd896cd7e2b0a16905f7f23d784441c Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Tue, 28 Apr 2015 14:15:46 -0300 Subject: Removed hackday vagrant while cleaning up the vagrantfile --- provisioning/build-hackday-box.sh | 52 --------------------------------------- provisioning/manifests/hackday.pp | 1 - 2 files changed, 53 deletions(-) delete mode 100755 provisioning/build-hackday-box.sh delete mode 100644 provisioning/manifests/hackday.pp (limited to 'provisioning') diff --git a/provisioning/build-hackday-box.sh b/provisioning/build-hackday-box.sh deleted file mode 100755 index 858fc40b..00000000 --- a/provisioning/build-hackday-box.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash -# -# Copyright (c) 2014 ThoughtWorks, Inc. -# -# Pixelated is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Pixelated is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with Pixelated. If not, see . - -PROVISIONING_PATH=$(dirname $0) -USER_AGENT_DIR="$PROVISIONING_PATH/.." - -PACKAGE_FILE="hackday-pixelated-user-agent.box" -BOX_NAME="hackaday-pixelated-user-agent" - -pushd $USER_AGENT_DIR - -# clear old boxes -vagrant destroy -f source -vagrant destroy -f hackday -vagrant box remove $BOX_NAME -rm "$USER_AGENT_DIR/$PACKAGE_FILE" - -# build from scratch -vagrant up source && \ -vagrant package --output="$USER_AGENT_DIR/$PACKAGE_FILE" && \ -vagrant box add $BOX_NAME $PACKAGE_FILE - -SUCCESS=$? - -popd - -if [ $SUCCESS -eq 0 ] ; then - echo - echo "Created hackday box $PACKAGE_FILE" - echo "If you want to test it, run" - echo - echo "vagrant up hackday" -else - echo "Error while building hackday box" 1>&2 -fi - -exit $SUCCESS - diff --git a/provisioning/manifests/hackday.pp b/provisioning/manifests/hackday.pp deleted file mode 100644 index 87a72728..00000000 --- a/provisioning/manifests/hackday.pp +++ /dev/null @@ -1 +0,0 @@ -class { '::pixelated::hackday_dev_env': } -- cgit v1.2.3