Skip to content

Instantly share code, notes, and snippets.

View feniix's full-sized avatar
🇦🇷

Sebastian B Otaegui feniix

🇦🇷
View GitHub Profile
@feniix
feniix / gist:9ca10fc70767e24ad547
Created August 20, 2014 16:50
bundle exec rake test
vagrant@vagrant-ubuntu-trusty-64:~/puppet-thrift$ bundle exec rake test
---> syntax:manifests
---> syntax:templates
---> syntax:hiera:yaml
puppet parser validate --noop manifests/instool.pp
puppet parser validate --noop manifests/init.pp
puppet parser validate --noop manifests/params.pp
ruby -c spec/acceptance/class_spec.rb
Syntax OK
ruby -c spec/spec_helper.rb
@feniix
feniix / -
Created September 5, 2014 16:32
Notice: Preparing to install into /Users/otaeguis/.puppet/modules ...
Notice: Downloading from https://forgeapi.puppetlabs.com ...
@feniix
feniix / -
Created September 5, 2014 16:33
Notice: Preparing to install into /Users/otaeguis/.puppet/modules ...
Notice: Downloading from https://forgeapi.puppetlabs.com ...
Error: No such file or directory @ realpath_rec - /Users/otaeguis/.puppet/var/puppet-module/cache/tmp-unpacker20140905-8920-huvgk4/gini-archive-0.2.0/files
Error: Try 'puppet help module install' for usage
@feniix
feniix / -
Created September 5, 2014 16:33
Notice: Preparing to install into /Users/otaeguis/.puppet/modules ...
Notice: Downloading from https://forgeapi.puppetlabs.com ...
Error: No such file or directory @ realpath_rec - /Users/otaeguis/.puppet/var/puppet-module/cache/tmp-unpacker20140905-9200-1q9itbj/gini-archive-0.2.0/files
Error: Try 'puppet help module install' for usage
@feniix
feniix / -
Created September 5, 2014 16:34
Notice: Preparing to install into /Users/otaeguis/.puppet/modules ...
Notice: Downloading from https://forgeapi.puppetlabs.com ...
Error: No such file or directory @ realpath_rec - /Users/otaeguis/.puppet/var/puppet-module/cache/tmp-unpacker20140905-9303-1xs5ged/gini-archive-0.2.0/files
Error: Try 'puppet help module install' for usage
@feniix
feniix / -
Created September 5, 2014 16:36
Notice: Preparing to install into /Users/otaeguis/.puppet/modules ...
Notice: Downloading from https://forgeapi.puppetlabs.com ...
Notice: Installing -- do not interrupt ...
/Users/otaeguis/.puppet/modules
└── gini-archive (v0.2.0)
@feniix
feniix / keybase.md
Created September 22, 2014 20:06
keybase.md

Keybase proof

I hereby claim:

  • I am feniix on github.
  • I am feniix (https://keybase.io/feniix) on keybase.
  • I have a public key whose fingerprint is 1088 6DFB 2A5F 4C05 DC18 95E3 830E 8A1A 4367 93B2

To claim this, I am signing this object:

#! /bin/bash
# This if for the mac hipchat client
# To setup, download this file to any folder and save as `hip.sh`
# change the permissions of the file so it is executable using terminal
# You can do this by running `chmod u+x ./hip.sh`
# Now you can run `./hip.sh`
echo 'Hipchat hooray...ho... - Press CTRL+C to stop'
while :
do
import sqlite3
from flask import Flask, request, session, g, redirect, url_for, \
abort, render_template, flash
from contextlib import closing
DATABASE = '/tmp/defects.db'
DEBUG = True
SECRET_KEY = 'development key'
USERNAME = 'admin'
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "g" do |g|
g.vm.provider "docker" do |d|
d.image = "dockerfile/redis"