# File lib/fog/libvirt/models/compute/server.rb, line 161
        def start
          requires :raw

          unless @raw.active?
            begin
              @raw.create
              true
            rescue
              false
            end
          end
        end