I hereby claim:
- I am someara on github.
- I am someara (https://keybase.io/someara) on keybase.
- I have a public key ASApYXGkBHJu7BQuP5jJ2sFdG12cug2Mo2zgx7kvu_39Xgo
To claim this, I am signing this object:
| Community cookbooks are important to me | |
| How long have you been using Chef? | |
| I expect Community cookbooks to "just work" | |
| I expect the Chef Software maintained cookbooks to "just work" | |
| I tried to reuse Community cookbooks as part of the evaluation process | |
| Community cookbooks have positively affected my decision to adopt Chef | |
| Community cookbooks have negatively affected my decision to adopt Chef |
| # container A | |
| template '/some/Dockerfile' do | |
| action :create | |
| end | |
| template '/some/file' do | |
| action :create | |
| end | |
| docker_image 'databass' do |
| package 'foo' fo | |
| action :install | |
| end | |
| template '/etc/foo' do | |
| notifies :restart, 'service[foo]' | |
| end | |
| # this will be started, then restarted on the first chef-client run | |
| service 'foo' do |
I hereby claim:
To claim this, I am signing this object:
| adnxs.net |
| #!/bin/bash | |
| set -euo pipefail | |
| IFS=$'\t\n' | |
| # This script JSON formatted stdin and produces as JSON formatted stdout | |
| # Sean OMeara <sean@sean.io> | |
| export PATH=$PATH:$1/bin | |
| function error_exit() { |
| # Example Kickstart config file for RHEL5, change $VARIABLES to suitable values | |
| # for your site | |
| # Usage from linux kernel boot prompt: | |
| # linux ks=http://$SERVER_ADDR/ks/rhel5-example.ks ip=$IPADDR netmask=$NETMASK gateway=$GATEWAY [nokill] [keymap=pt-latin1] [noipv6] [debug] | |
| # | |
| # More boot options at http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html/Installation_Guide/ch-bootopts-x86.html | |
| # Options for this section can be found at http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html/Installation_Guide/s1-kickstart2-options.html | |
| install |