├── .document ├── .gitignore ├── LICENSE ├── Modulefile ├── README.rdoc ├── Rakefile ├── VERSION ├── bin └── puppet-rundeck ├── lib └── puppet-rundeck.rb ├── manifests └── init.pp ├── puppet-rundeck.gemspec ├── puppet-rundeck.init ├── puppet-rundeck.init.ubuntu └── spec ├── puppet-rundesk_spec.rb ├── spec.opts └── spec_helper.rb /.document: -------------------------------------------------------------------------------- 1 | README.rdoc 2 | lib/**/*.rb 3 | bin/* 4 | features/**/*.feature 5 | LICENSE 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## MAC OS 2 | .DS_Store 3 | 4 | ## TEXTMATE 5 | *.tmproj 6 | tmtags 7 | 8 | ## EMACS 9 | *~ 10 | \#* 11 | .\#* 12 | 13 | ## VIM 14 | *.swp 15 | 16 | ## PROJECT::GENERAL 17 | coverage 18 | rdoc 19 | pkg 20 | * .gem 21 | 22 | ## PROJECT::SPECIFIC 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Modulefile: -------------------------------------------------------------------------------- 1 | name 'puppet-rundeck' 2 | version '0.0.7' 3 | license 'Apache 2.0' 4 | summary 'Integrates Puppet with Rundeck' 5 | project_page 'https://github.com/jamtur01/puppet-rundeck' 6 | -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- 1 | = puppet-rundeck 2 | 3 | Integrates Puppet with RunDeck. 4 | 5 | Visiting the URL, for example `localhost:8144`, should return a list of all nodes 6 | on the Puppet master and populates the appropriate facts for use with RunDeck. 7 | 8 | Note: Version 0.0.2 and earlier required stored configuration to be enabled. Later versions do not. 9 | 10 | == Prerequisites 11 | 12 | Requires: 13 | 14 | - Puppet (0.25.5 and later) 15 | 16 | == Installation 17 | 18 | Install the gem: 19 | 20 | $ sudo gem install puppet-rundeck 21 | 22 | == Usage 23 | 24 | Run the `puppet-rundeck` binary. We've assumed you're running `puppet-rundeck` on the Puppet master host. 25 | 26 | $ puppet-rundeck 27 | 28 | Then browse to appropriate URL, by default `localhost:8144` 29 | 30 | $ curl localhost:8144 31 | 32 | A list of the current hosts and appropriate facts to configure them on RunDeck will be returned in XML. 33 | 34 | For example: 35 | 36 | 37 | 38 | 48 | 49 | 50 | To use with RunDeck specify the target URL as the value of the 51 | `project.resources.url` option in the `project.properties` file for your 52 | project, for example: 53 | 54 | project.resources.url = http://localhost:8144 55 | 56 | Yo can also specify a required tag to filter the node list, to provide 57 | different project URLs based on the same Puppet server and Puppet-Rundeck 58 | instance: 59 | 60 | project.resources.url = http://localhost:8144/tag/production 61 | 62 | You can specify some configuration options: 63 | 64 | * -c or --config to override the default Puppet configuration file (defaults to `/etc/puppet/puppet.conf`) 65 | * -u or --username the user for RunDeck to SSH as, defaults to current user 66 | * -p or --port the port to start `puppet-rundeck` on, default to 8144 67 | 68 | == Credits 69 | 70 | Original concept heavily stolen from Adam Jacob's chef-rundeck gem. 71 | 72 | == Copyright 73 | 74 | Copyright (c) 2014 James Turnbull. See LICENSE for details. 75 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'rake' 3 | 4 | begin 5 | require 'jeweler' 6 | Jeweler::Tasks.new do |gem| 7 | gem.name = "puppet-rundeck" 8 | gem.summary = %Q{Integrates Puppet with RunDeck} 9 | gem.description = %Q{Provides a resource endpoint for RunDeck from a Puppet Server} 10 | gem.files = Dir["{lib,test}/**/*"] + Dir["[A-Z]*"] 11 | gem.require_path = "lib" 12 | gem.email = "james@puppetlabs.com" 13 | gem.homepage = "http://github.com/jamtur01/puppet-rundeck" 14 | gem.authors = ["James Turnbull"] 15 | gem.add_dependency "sinatra" 16 | gem.add_dependency "builder", ">= 2.0.0" 17 | gem.add_development_dependency "rspec", ">= 1.2.9" 18 | gem.add_development_dependency "yard", ">= 0" 19 | # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings 20 | end 21 | Jeweler::GemcutterTasks.new 22 | rescue LoadError 23 | puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" 24 | end 25 | 26 | begin 27 | require 'spec/rake/spectask' 28 | Spec::Rake::SpecTask.new(:spec) do |spec| 29 | spec.libs << 'lib' << 'spec' 30 | spec.spec_files = FileList['spec/**/*_spec.rb'] 31 | end 32 | 33 | Spec::Rake::SpecTask.new(:rcov) do |spec| 34 | spec.libs << 'lib' << 'spec' 35 | spec.pattern = 'spec/**/*_spec.rb' 36 | spec.rcov = true 37 | end 38 | rescue LoadError 39 | puts "RSpec not available. Install it with: gem install rspec" 40 | end 41 | 42 | task :spec => :check_dependencies 43 | 44 | task :default => :spec 45 | 46 | begin 47 | require 'yard' 48 | YARD::Rake::YardocTask.new 49 | rescue LoadError 50 | task :yardoc do 51 | abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard" 52 | end 53 | end 54 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.9 2 | -------------------------------------------------------------------------------- /bin/puppet-rundeck: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # 3 | # Copyright 2010, James Turnbull 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | 18 | $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib"))) 19 | 20 | require 'rubygems' 21 | require 'optparse' 22 | require 'puppet-rundeck' 23 | 24 | options = {} 25 | 26 | optparse = OptionParser.new do |opts| 27 | # Set a banner, displayed at the top 28 | # of the help screen. 29 | opts.banner = 'Usage: puppet-rundeck [options] ...' 30 | 31 | opts.separator '' 32 | opts.separator 'Configuration options:' 33 | 34 | options[:config_file] = "/etc/puppet/puppet.conf" 35 | opts.on( '-c', '--config FILE', 'Specify the location of your Puppet configuration file') do |config_file| 36 | options[:config_file] = config_file 37 | end 38 | 39 | options[:username] = ENV['USER'] 40 | opts.on( '-u', '--username USERNAME', 'The Username for Rundeck to SSH as') do |username| 41 | options[:username] = username 42 | end 43 | 44 | options[:port] = 8144 45 | opts.on( '-p', '--port PORT', 'The port to run puppet-rundeck on') do |port| 46 | options[:port] = port 47 | end 48 | 49 | options[:bind] = "localhost" 50 | opts.on( '-b', '--bind HOSTNAME', 'The hostname or IP address of the interface to run puppet-rundeck on') do |bind| 51 | options[:bind] = bind 52 | end 53 | 54 | opts.separator "" 55 | opts.separator "Common options:" 56 | 57 | opts.on_tail('-h', '--help', 'Display this screen' ) do 58 | puts opts 59 | exit 60 | end 61 | end 62 | 63 | begin 64 | optparse.parse! 65 | PuppetRundeck.config_file = options[:config_file] 66 | PuppetRundeck.username = options[:username] 67 | PuppetRundeck.configure 68 | PuppetRundeck.run! :bind => options[:bind], :port => options[:port] 69 | rescue OptionParser::InvalidArgument, OptionParser::InvalidOption, OptionParser::MissingArgument 70 | puts $!.to_s 71 | puts optparse 72 | exit 73 | end 74 | -------------------------------------------------------------------------------- /lib/puppet-rundeck.rb: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2012, James Turnbull 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | require 'sinatra/base' 18 | require 'fast_xs' 19 | 20 | begin 21 | require 'puppet' 22 | require 'puppet/face' 23 | rescue LoadError 24 | puts "You need to have Puppet 0.25.5 or later installed" 25 | end 26 | 27 | class PuppetRundeck < Sinatra::Base 28 | 29 | class << self 30 | attr_accessor :config_file 31 | attr_accessor :username 32 | attr_accessor :source 33 | 34 | def configure 35 | Puppet[:config] = PuppetRundeck.config_file 36 | Puppet.parse_config 37 | end 38 | end 39 | 40 | def xml_escape(input) 41 | # don't know if is string, so convert to string first, then to XML escaped text. 42 | return input.to_s.fast_xs 43 | end 44 | 45 | def respond(required_tag=nil, name_query="*") 46 | response['Content-Type'] = 'text/xml' 47 | response_xml = %Q(\n\n\n) 48 | # Fix for 2.6 to 2.7 indirection difference 49 | Puppet[:clientyamldir] = "$yamldir" 50 | if Puppet::Node.respond_to? :terminus_class 51 | Puppet::Node.terminus_class = :yaml 52 | nodes = Puppet::Node.search(name_query) 53 | else 54 | Puppet::Node.indirection.terminus_class = :yaml 55 | nodes = Puppet::Node.indirection.search(name_query) 56 | end 57 | Puppet::Node.indirection.terminus_class = :plain 58 | nodes.each do |n| 59 | if Puppet::Node::Facts.respond_to? :find 60 | tags = Puppet::Resource::Catalog.find(n.name).tags 61 | else 62 | tags = Puppet::Face[:catalog, :current].find(n.name).tags 63 | end 64 | if ! required_tag.nil? 65 | next if ! tags.include? required_tag 66 | end 67 | facts = n.parameters 68 | os_family = facts["kernel"] =~ /windows/i ? 'windows' : 'unix' 69 | response_xml << <<-EOH 70 | 80 | EOH 81 | end 82 | response_xml << "" 83 | response_xml 84 | end 85 | 86 | get '/' do 87 | respond 88 | end 89 | 90 | get '/tag/:tag' do 91 | respond(params[:tag]) 92 | end 93 | 94 | get '/name/:query' do 95 | respond(nil, params[:query]) 96 | end 97 | end 98 | -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamtur01/puppet-rundeck/22a72fc443575254ad63c6fd7f027a3200ed7402/manifests/init.pp -------------------------------------------------------------------------------- /puppet-rundeck.gemspec: -------------------------------------------------------------------------------- 1 | # Generated by jeweler 2 | # DO NOT EDIT THIS FILE DIRECTLY 3 | # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command 4 | # -*- encoding: utf-8 -*- 5 | 6 | Gem::Specification.new do |s| 7 | s.name = %q{puppet-rundeck} 8 | s.version = "0.0.9" 9 | 10 | s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= 11 | s.authors = ["James Turnbull"] 12 | s.date = %q{2012-05-22} 13 | s.default_executable = %q{puppet-rundeck} 14 | s.description = %q{Provides a resource endpoint for RunDeck from a Puppet Server} 15 | s.email = %q{james@puppetlabs.com} 16 | s.executables = ["puppet-rundeck"] 17 | s.license = %q{Apache-2.0} 18 | s.extra_rdoc_files = [ 19 | "LICENSE", 20 | "README.rdoc" 21 | ] 22 | s.files = [ 23 | "LICENSE", 24 | "README.rdoc", 25 | "Rakefile", 26 | "VERSION", 27 | "lib/puppet-rundeck.rb" 28 | ] 29 | s.homepage = %q{http://github.com/jamtur01/puppet-rundeck} 30 | s.rdoc_options = ["--charset=UTF-8"] 31 | s.require_paths = ["lib"] 32 | s.rubygems_version = %q{1.3.7} 33 | s.summary = %q{Integrates Puppet with RunDeck} 34 | s.test_files = [ 35 | "spec/puppet-rundesk_spec.rb", 36 | "spec/spec_helper.rb" 37 | ] 38 | 39 | if s.respond_to? :specification_version then 40 | current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION 41 | s.specification_version = 3 42 | 43 | if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then 44 | s.add_runtime_dependency(%q, [">= 0"]) 45 | s.add_runtime_dependency(%q, [">= 0"]) 46 | s.add_development_dependency(%q, [">= 1.2.9"]) 47 | s.add_development_dependency(%q, [">= 0"]) 48 | else 49 | s.add_dependency(%q, [">= 0"]) 50 | s.add_dependency(%q, [">= 0"]) 51 | s.add_dependency(%q, [">= 1.2.9"]) 52 | s.add_dependency(%q, [">= 0"]) 53 | end 54 | else 55 | s.add_dependency(%q, [">= 0"]) 56 | s.add_dependency(%q, [">= 0"]) 57 | s.add_dependency(%q, [">= 1.2.9"]) 58 | s.add_dependency(%q, [">= 0"]) 59 | end 60 | end 61 | 62 | -------------------------------------------------------------------------------- /puppet-rundeck.init: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Init script for puppet-dashboard 4 | # 5 | # chkconfig: - 85 15 6 | # description: Init script for puppet-rundeck 7 | 8 | # Source function library. 9 | . /etc/rc.d/init.d/functions 10 | 11 | PUPPET_RUNDECK_PATH=${PUPPET_RUNDECK_PATH:-/usr/bin/puppet-rundeck} 12 | PUPPET_RUNDECK_USER=${PUPPET_RUNDECK_USER:-rundeck} 13 | PUPPET_RUNDECK_RUBY=${PUPPET_RUNDECK_RUBY:-/usr/bin/ruby} 14 | PIDFILE=/var/run/puppet-rundeck.pid 15 | RETVAL=0 16 | 17 | check_status() { 18 | pidofproc -p ${PIDFILE} ${PUPPET_RUNDECK_PATH} > /dev/null 19 | } 20 | 21 | start() { 22 | echo -n $"Starting Puppet Rundeck: " 23 | 24 | # Don't start it twice. 25 | check_status 26 | RETVAL=$? 27 | if [ $RETVAL = 0 ]; then 28 | echo -n "Already running" 29 | echo_success 30 | echo 31 | return 0 32 | fi 33 | 34 | # This is a no longer a dirty, dirty hack, we now daemonize the server. 35 | # Also: We have access to daemon. 36 | daemon --pidfile ${PIDFILE} "${PUPPET_RUNDECK_RUBY} ${PUPPET_RUNDECK_PATH} -u ${PUPPET_RUNDECK_USER} &" 37 | 38 | # Grab the pid. pidof doesn't work well here, so we use pgrep 39 | local PID=`pgrep -f "${PUPPET_RUNDECK_RUBY} ${PUPPET_RUNDECK_PATH} -u ${PUPPET_RUNDECK_USER}"` 40 | echo $PID > ${PIDFILE} 41 | 42 | sleep 5 43 | 44 | check_status 45 | RETVAL=$? 46 | 47 | if [ $RETVAL = 0 ]; then 48 | echo_success 49 | else 50 | echo_failure 51 | fi 52 | 53 | echo 54 | return $RETVAL 55 | } 56 | 57 | stop() { 58 | echo -n $"Stopping Puppet Rundeck: " 59 | killproc -p ${PIDFILE} puppet-rundeck 60 | RETVAL=$? 61 | if [ $RETVAL = 0 ]; then 62 | echo_success 63 | else 64 | echo_failure 65 | fi 66 | 67 | echo 68 | return $RETVAL 69 | } 70 | 71 | # See how we were called. 72 | case "$1" in 73 | start) 74 | start 75 | exit $? 76 | ;; 77 | stop) 78 | stop 79 | exit $? 80 | ;; 81 | restart) 82 | stop && start 83 | exit $? 84 | ;; 85 | status) 86 | echo -n 'Puppet Rundeck is ' 87 | pidofproc -p ${PIDFILE} ${PUPPET_RUNDECK_RUBY} > /dev/null 88 | RETVAL=$? 89 | if [ $RETVAL = 0 ]; then 90 | echo 'running' 91 | else 92 | echo 'stopped' 93 | fi 94 | ;; 95 | *) 96 | echo "Usage: $0 {start|stop|restart|status}" 97 | exit 1 98 | esac 99 | 100 | exit $RETVAL 101 | -------------------------------------------------------------------------------- /puppet-rundeck.init.ubuntu: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | ### BEGIN INIT INFO 3 | # Provides: puppet-rundeck 4 | # Required-Start: $remote_fs $syslog 5 | # Required-Stop: $remote_fs $syslog 6 | # Default-Start: 2 3 4 5 7 | # Default-Stop: 0 1 6 8 | # Short-Description: init script for puppet-rundeck 9 | # placed in /etc/init.d. 10 | ### END INIT INFO 11 | 12 | # Do NOT "set -e" 13 | 14 | # PATH should only include /usr/* if it runs after the mountnfs.sh script 15 | PATH=/sbin:/usr/sbin:/bin:/usr/bin 16 | DESC="puppet-rundeck webservice" 17 | NAME=puppet-rundeck 18 | DAEMON=/opt/ruby/bin/$NAME 19 | DAEMON_ARGS="--username rundeck" 20 | PIDFILE=/var/run/$NAME.pid 21 | SCRIPTNAME=/etc/init.d/$NAME 22 | 23 | # Exit if the package is not installed 24 | [ -x "$DAEMON" ] || exit 0 25 | 26 | # Read configuration variable file if it is present 27 | [ -r /etc/default/$NAME ] && . /etc/default/$NAME 28 | 29 | # Load the VERBOSE setting and other rcS variables 30 | . /lib/init/vars.sh 31 | 32 | # Define LSB log_* functions. 33 | # Depend on lsb-base (>= 3.0-6) to ensure that this file is present. 34 | . /lib/lsb/init-functions 35 | 36 | # 37 | # Function that starts the daemon/service 38 | # 39 | do_start() 40 | { 41 | # Return 42 | # 0 if daemon has been started 43 | # 1 if daemon was already running 44 | # 2 if daemon could not be started 45 | start-stop-daemon --start --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \ 46 | || return 1 47 | start-stop-daemon --start --background --pidfile $PIDFILE --exec $DAEMON -- \ 48 | $DAEMON_ARGS \ 49 | || return 2 50 | # Add code here, if necessary, that waits for the process to be ready 51 | # to handle requests from services started subsequently which depend 52 | # on this one. As a last resort, sleep for some time. 53 | } 54 | 55 | # 56 | # Function that stops the daemon/service 57 | # 58 | do_stop() 59 | { 60 | # Return 61 | # 0 if daemon has been stopped 62 | # 1 if daemon was already stopped 63 | # 2 if daemon could not be stopped 64 | # other if a failure occurred 65 | start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --name $NAME 66 | RETVAL="$?" 67 | [ "$RETVAL" = 2 ] && return 2 68 | # Wait for children to finish too if this is a daemon that forks 69 | # and if the daemon is only ever run from this initscript. 70 | # If the above conditions are not satisfied then add some other code 71 | # that waits for the process to drop all resources that could be 72 | # needed by services started subsequently. A last resort is to 73 | # sleep for some time. 74 | start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON 75 | [ "$?" = 2 ] && return 2 76 | # Many daemons don't delete their pidfiles when they exit. 77 | rm -f $PIDFILE 78 | return "$RETVAL" 79 | } 80 | 81 | # 82 | # Function that sends a SIGHUP to the daemon/service 83 | # 84 | do_reload() { 85 | # 86 | # If the daemon can reload its configuration without 87 | # restarting (for example, when it is sent a SIGHUP), 88 | # then implement that here. 89 | # 90 | start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME 91 | return 0 92 | } 93 | 94 | case "$1" in 95 | start) 96 | [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" 97 | do_start 98 | case "$?" in 99 | 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 100 | 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; 101 | esac 102 | ;; 103 | stop) 104 | [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" 105 | do_stop 106 | case "$?" in 107 | 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; 108 | 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; 109 | esac 110 | ;; 111 | status) 112 | status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? 113 | ;; 114 | #reload|force-reload) 115 | # 116 | # If do_reload() is not implemented then leave this commented out 117 | # and leave 'force-reload' as an alias for 'restart'. 118 | # 119 | #log_daemon_msg "Reloading $DESC" "$NAME" 120 | #do_reload 121 | #log_end_msg $? 122 | #;; 123 | restart|force-reload) 124 | # 125 | # If the "reload" option is implemented then remove the 126 | # 'force-reload' alias 127 | # 128 | log_daemon_msg "Restarting $DESC" "$NAME" 129 | do_stop 130 | case "$?" in 131 | 0|1) 132 | do_start 133 | case "$?" in 134 | 0) log_end_msg 0 ;; 135 | 1) log_end_msg 1 ;; # Old process is still running 136 | *) log_end_msg 1 ;; # Failed to start 137 | esac 138 | ;; 139 | *) 140 | # Failed to stop 141 | log_end_msg 1 142 | ;; 143 | esac 144 | ;; 145 | *) 146 | #echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2 147 | echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 148 | exit 3 149 | ;; 150 | esac 151 | 152 | : 153 | -------------------------------------------------------------------------------- /spec/puppet-rundesk_spec.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path(File.dirname(__FILE__) + '/spec_helper') 2 | 3 | describe "PuppetRundeck" do 4 | it "fails" do 5 | fail "hey buddy, you should probably rename this file and start specing for real" 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | $LOAD_PATH.unshift(File.dirname(__FILE__)) 2 | $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) 3 | require 'rubygems' 4 | require 'puppet-rundeck' 5 | require 'spec' 6 | require 'spec/autorun' 7 | 8 | Spec::Runner.configure do |config| 9 | 10 | end 11 | --------------------------------------------------------------------------------