# File lib/knife-solo/bootstraps.rb, line 77
      def omnibus_install
        url = prepare.config[:omnibus_url] || "https://www.opscode.com/chef/install.sh"
        file = File.basename(url)
        http_client_get_url(url, file)

        install_command = "sudo bash #{file} #{omnibus_options}"
        stream_command(install_command)
      end