File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ GEM = "chef-server"
55CHEF_SERVER_VERSION = "0.0.1"
66AUTHOR = "Adam Jacob"
77EMAIL = "adam@opscode.com"
8- HOMEPAGE = "http://hjksolutions. com"
8+ HOMEPAGE = "http://www.opscode. com/chef "
99SUMMARY = "A configuration management system server."
1010
1111spec = Gem ::Specification . new do |s |
@@ -32,7 +32,7 @@ spec = Gem::Specification.new do |s|
3232 s . add_dependency "syntax"
3333
3434 s . bindir = "bin"
35- s . executables = %w( chef-indexer chef-server )
35+ s . executables = %w( chef-indexer chef-server )
3636
3737 s . files = %w( LICENSE README.txt Rakefile ) + Dir . glob ( "{lib}/**/*" )
3838end
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ require 'chef'
2424require 'chef/client'
2525require 'json'
2626require 'daemons'
27+ require 'tmpdir'
2728
2829config = {
2930 :config_file => "/etc/chef/client.rb" ,
@@ -95,8 +96,6 @@ config[:daemonize] ||= Chef::Config[:daemonize]
9596Chef ::Config [ :interval ] = config [ :interval ] if config [ :interval ]
9697Chef ::Config [ :splay ] = config [ :splay ] if config [ :splay ]
9798
98- Daemons . daemonize ( :ontop => !config [ :daemonize ] )
99-
10099Kernel . trap ( "INT" ) { Chef ::Log . fatal ( "Recieved SIGINT - exiting!" ) ; exit 2 }
101100
102101sleepy_time = 0
You can’t perform that action at this time.
0 commit comments