Skip to content

Commit

Permalink
add tmux cookbook
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Sep 7, 2010
1 parent 239c143 commit 8fb388c
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tmux/README.md
@@ -0,0 +1,28 @@
DESCRIPTION
===========

Installs tmux, a terminal multiplexer.

REQUIREMENTS
============

Platform with a package named 'tmux'.

LICENSE AND AUTHOR
==================

Author:: Joshua Timberman (<joshua@opscode.com>)

Copyright:: Opscode, Inc. (<legal@opscode.com>)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
29 changes: 29 additions & 0 deletions tmux/metadata.json
@@ -0,0 +1,29 @@
{
"name": "tmux",
"description": "Installs tmux",
"long_description": "DESCRIPTION\n===========\n\nInstalls tmux, a terminal multiplexer.\n\nREQUIREMENTS\n============\n\nPlatform with a package named 'tmux'.\n\nLICENSE AND AUTHOR\n==================\n\nAuthor:: Joshua Timberman (<joshua@opscode.com>)\n\nCopyright:: Opscode, Inc. (<legal@opscode.com>)\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n",
"maintainer": "Opscode, Inc.",
"maintainer_email": "cookbooks@opscode.com",
"license": "Apache 2.0",
"platforms": {
},
"dependencies": {
},
"recommendations": {
},
"suggestions": {
},
"conflicting": {
},
"providing": {
},
"replacing": {
},
"attributes": {
},
"groupings": {
},
"recipes": {
},
"version": "1.0.0"
}
6 changes: 6 additions & 0 deletions tmux/metadata.rb
@@ -0,0 +1,6 @@
maintainer "Opscode, Inc."
maintainer_email "cookbooks@opscode.com"
license "Apache 2.0"
description "Installs tmux"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.0.0"
21 changes: 21 additions & 0 deletions tmux/recipes/default.rb
@@ -0,0 +1,21 @@
#
# Cookbook Name:: tmux
# Recipe:: default
#
# Copyright 2010, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
#

package "tmux" do
action :install
end

0 comments on commit 8fb388c

Please sign in to comment.