Skip to content
This repository has been archived by the owner on Jul 11, 2020. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubygems/rubygems-chef
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 32938ceaf955
Choose a base ref
...
head repository: rubygems/rubygems-chef
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 218b9124e7cc
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jun 20, 2014

  1. Run chef-client every 30 minutes instead of every 15

    Sam Kottler committed Jun 20, 2014

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    8c66323 View commit details
  2. Merge branch 'master' of github.com:skottler/rubygems-infrastructure

    * 'master' of github.com:skottler/rubygems-infrastructure:
      use instance variable for stat server
      ssl and geoip always
      load env variables when starting services
      add Rakefile for testing
      cleanup
      add missing dependancies
      cleanup
    Sam Kottler committed Jun 20, 2014
    Copy the full SHA
    218b912 View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 Berksfile.lock
  2. +1 −1 cookbooks/rubygems-chef/metadata.rb
  3. +1 −1 cookbooks/rubygems-chef/recipes/default.rb
2 changes: 1 addition & 1 deletion Berksfile.lock
Original file line number Diff line number Diff line change
@@ -183,7 +183,7 @@ GRAPH
rubygems-cache (0.0.1)
memcached (>= 0.0.0)
rubygems (>= 0.0.0)
rubygems-chef (0.0.2)
rubygems-chef (0.0.3)
line (>= 0.0.0)
rubygems-database (0.0.20)
database (>= 0.0.0)
2 changes: 1 addition & 1 deletion cookbooks/rubygems-chef/metadata.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name 'rubygems-chef'
maintainer 'RubyGems.org ops team'

version '0.0.2'
version '0.0.3'

depends 'line'

2 changes: 1 addition & 1 deletion cookbooks/rubygems-chef/recipes/default.rb
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
#

cron 'chef-client' do
minute '*/15'
minute '*/30'
hour '*'
user 'root'
command '/usr/bin/chef-client'