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 | |
# Requires fpm v0.4.20 at least | |
# | |
# rm -rf carbon-latest* ceres-latest* graphite-web-latest* whisper-latest* *.deb;rm -rf /opt/graphite/;dpkg -r python-whisper python-graphite-web python-carbon python-ceres python-txamqp | |
# | |
# This script needs "fpm". If you dont have it, | |
# run "gem install fpm" | |
# Then simply execute this script and it will create packages and install them on your system. | |
# |
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
<% | |
# This portion simply calculates the baseip from the ip/mask | |
baseip="" | |
addr_parts = scope.lookupvar("ipaddress").split('.') | |
mask_parts = scope.lookupvar("netmask").split('.') | |
addr_parts.zip((0..addr_parts.size).to_a).map do |n,i| | |
baseip += (n.to_i & mask_parts[i].to_i).to_s + "." | |
end | |
baseip = baseip[0..-2] | |
-%> |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "precise64" | |
# Set a hostname | |
config.vm.host_name = "ona-vm" |
NewerOlder