I hereby claim:
- I am arusso on github.
- I am arusso (https://keybase.io/arusso) on keybase.
- I have a public key ASCkl756VlwTKTeW_vSQ20824E6NZ1E0BBAM9beXd0UaBgo
To claim this, I am signing this object:
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"os" | |
"github.com/shomali11/slacker" | |
"github.com/slack-go/slack/socketmode" |
I hereby claim:
To claim this, I am signing this object:
require 'openssl' | |
require 'openssl-extensions/all' | |
keyfile = '/tmp/mycert.key' | |
csrfile = '/tmp/mycert.csr' | |
file = File.new(keyfile,'w',0400) | |
key = OpenSSL::PKey::RSA.new 2048 | |
file.write(key) |
### Keybase proof | |
I hereby claim: | |
* I am arusso on github. | |
* I am arusso (https://keybase.io/arusso) on keybase. | |
* I have a public key whose fingerprint is FE82 76B3 AC8E E00B 8A55 9C0D 138D EBE5 AC61 CFAA | |
To claim this, I am signing this object: |
! | |
! setup an ACL that matches hosts whose urgent flag is to be left untouched | |
! through the ASA Firewall. This could probably be limited to a particular port | |
! if we so chose. | |
! | |
access-list extended acl_permit_urgent_flag permit <host/network> <netmask> | |
! | |
! create a tcp-map (packet normalization policy) that allows the urgent-flag through | |
! identified packets |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
home = File.dirname(__FILE__) | |
# Primary VagrantFile | |
# handles the setting up of our puppetmaster | |
# Define our default box, in case we dont override it in the VagrantInit | |
# file. We'll also add our puppet hosts entry |
[ req ] | |
default_bits = 2048 | |
default_md = sha1 | |
distinguished_name = req_distinguished_name | |
prompt = no | |
<% if @alt_names_real.count > 1 -%> | |
x509_extensions = v3_ca # The extentions to add to the self signed cert | |
req_extensions = v3_req # The extensions to add to a certificate request | |
<% end -%> |
# Ensure Java 1.7 is installed | |
package { 'java-1.7.0-oracle': ensure => installed } | |
# update alternatives only if it's not set correctly already | |
exec { 'alternatives --set java \ | |
/usr/lib/jvm/jre-1.7.0-oracle.x86_64/bin/java': | |
unless => "test $(readlink /etc/alternatives/java) == \ | |
'/usr/lib/jvm/jre-1.7.0-oracle.x86_64/bin/java'", | |
require => Package['java-1.7.0-oracle'], | |
path => ['/bin','/usr/sbin','/usr/bin'], |
value 0 | |
value 1 | |
value 2 | |
value 3 |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
config.vm.provision :puppet, :module_path => "modules" | |
config.vm.define :blank do |node_config| | |
node_config.vm.box = "centos6-eu" | |
end |