# File lib/fog/libvirt/models/compute/pool.rb, line 56
        def destroy
          # Shutdown pool if active
          connection.pool_action uuid, :destroy if active?
          # If this is a persistent domain we need to undefine it
          connection.pool_action uuid, :undefine if persistent?
        end