# File lib/fog/compute/models/rackspace/server.rb, line 115
        def ssh(commands)
          requires :public_ip_address, :identity, :username

          options = {}
          options[:key_data] = [private_key] if private_key
          Fog::SSH.new(public_ip_address, username, options).run(commands)
        end