/usr/bin/fog is in ruby-fog 1.34.0-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78  | #!/usr/bin/ruby
require 'fog'
require 'optparse'
require 'irb'
require 'yaml'
options = OptionParser.new do |opts|
  opts.banner = 'usage: fog [options] CREDENTIAL'
  opts.on('-C', '--credentials-path FILE', 'Path to the credentials file') do |file|
    Fog.credentials_path = file
  end
  opts.on_tail('-v', '--version', 'Prints the version') do
    puts Fog::VERSION
    exit
  end
  opts.on_tail('-h', '--help', 'Prints this message') do
    puts opts
    exit
  end
end
options.parse!
Fog.credential = ARGV.first ? ARGV.first.to_sym : nil
Fog.mock! if ENV['FOG_MOCK']
if Fog.credentials.empty?
  begin
    Fog::Errors.missing_credentials
  rescue Fog::Errors::LoadError => error
    abort error.message
  end
end
require 'fog/bin'
providers = Fog.available_providers
providers = if providers.length > 1
  providers[0...-1].join(', ') << ' and ' << providers[-1]
else
  providers.first
end
if ARGV.length > 1
  result = instance_eval(ARGV[1..-1].join(' '))
  puts(Fog::JSON.encode(result))
else
  ARGV.clear # Avoid passing args to IRB
  IRB.setup(nil)
  @irb = IRB::Irb.new(nil)
  IRB.conf[:MAIN_CONTEXT] = @irb.context
  IRB.conf[:PROMPT][:FOG] = IRB.conf[:PROMPT][:SIMPLE].dup
  IRB.conf[:PROMPT][:FOG][:RETURN] = "%s\n"
  @irb.context.prompt_mode = :FOG
  @irb.context.workspace = IRB::WorkSpace.new(binding)
  trap 'INT' do
    @irb.signal_handle
  end
  Fog::Formatador.display_line('Welcome to fog interactive!')
  Fog::Formatador.display_line(":#{Fog.credential} provides #{providers}")
  providers = Fog.providers
  # FIXME: hacks until we can `include Fog` in bin
  CDN     = Fog::CDN
  Compute = Fog::Compute
  DNS     = Fog::DNS
  Storage = Fog::Storage
  catch(:IRB_EXIT) { @irb.eval_input }
end
 |