Skip to content

Commit

Permalink
Merge pull request #1485 from chef/tc/add-version-command
Browse files Browse the repository at this point in the history
Added chef-server-ctl version functionality
  • Loading branch information
Thomas Cate authored Apr 13, 2018
2 parents dec66be + eb063c0 commit f462cd7
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions omnibus/files/private-chef-ctl-commands/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#
# Copyright:: Copyright (c) 2018 Chef Software, 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
# limitations under the License.
require 'json'

add_command_under_category "version", "general", "Display current version of Chef Server.", 2 do

begin
# detect if running as a habitat service
if File.exist?('/hab/svc/chef-server-ctl/PID')
ident_file = File.read('../IDENT')
version = "chef-server #{ident_file.split('/')[2]}"
else
version = JSON.parse(File.read('/opt/opscode/version-manifest.json'))['build_version']
end

puts version
rescue Errno::ENOENT => e
puts "Error determining version!"
puts "#{e.message}"
exit(1)
end

end

0 comments on commit f462cd7

Please sign in to comment.