Skip to content

Instantly share code, notes, and snippets.

View jtimberman's full-sized avatar
🚀

Joshua Timberman jtimberman

🚀
View GitHub Profile
On local system, ~root/.ssh/config:
Host chef_server
IdentityFile /root/.ssh/chef_tunnel
User chef_client
Hostname gateway.example.com
Port 2022 # open port 2022 on your firewall to NAT to 22 on chef server
LocalForward 4400 my-chef-server:4000 # chef
LocalForward 4401 my-chef-server:4001 # openid
### end .ssh/config ###
$ ssh-keygen -f some_key -C 'this key is awesome'
Generating public/private rsa key pair.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in some_key.
Your public key has been saved in some_key.pub.
The key fingerprint is:
9c:28:d3:69:81:a7:37:8b:1f:21:48:0d:05:72:55:40 this key is awesome
The key's randomart image is:
+--[ RSA 2048]----+
"interfaces": {
"vmnet1": {
"flags": [
"UP",
"BROADCAST",
"SMART",
"RUNNING",
"SIMPLEX",
"MULTICAST"
],
define :php_app, :docroot, :canonical_hostname => nil, :template => "php/php.conf.erb" do
application_name = params[:name]
include_recipe "apache2"
include_recipe "apache2::mod_rewrite"
include_recipe "apache2::mod_deflate"
include_recipe "apache2::mod_headers"
template "/etc/apache2/sites-available/#{params[:name]}.conf" do
%{portmap nfslock rpcbind}.each do |pkg|
package pkg do
action :upgrade
end
end
Host *
Protocol 2
ForwardAgent yes
TCPKeepAlive yes
ServerAliveInterval 240
PubkeyAuthentication yes
IdentityFile /home/username/.ssh/id_rsa
User username
resources in cookbook:
user "dnscache" do
uid 9997
case node[:platform]
when "ubuntu","debian"
gid "nogroup"
when "redhat", "centos"
gid "nobody"
else
execute "mysql-stop" do
command "/etc/init.d/mysql stop"
action :nothing
end
execute "mysql-start" do
command "/etc/init.d/mysql start"
action :nothing
end
/usr/lib/ruby/gems/1.8/gems/chef-server-0.5.4/lib/views/nodes/index.html.haml
- throw_content(:header, "Node List")
%table
- @node_list.each do |node|
%tr
%td
.node
%a{ :href => url(:node, { :id => node.gsub(/\./, "_") }) }
= node
%td
mount "/mnt/test" do
device "/dev/exportvg/testlv"
fstype "ext3"
action :mount
end
$ mount | grep testlv
/dev/mapper/exportvg-testlv on /mnt/test type ext3 (rw)