diff --git a/proxmox/resource_lxc.go b/proxmox/resource_lxc.go index 3a70f50..9bd91fb 100644 --- a/proxmox/resource_lxc.go +++ b/proxmox/resource_lxc.go @@ -11,7 +11,7 @@ func resourceLxc() *schema.Resource { Create: resourceLxcCreate, Read: resourceLxcRead, Update: resourceLxcUpdate, - Delete: resourceLxcDelete, + Delete: resourceVmQemuDelete, Importer: &schema.ResourceImporter{ State: schema.ImportStatePassthrough, }, @@ -562,7 +562,3 @@ func resourceLxcRead(d *schema.ResourceData, meta interface{}) error { pmParallelEnd(pconf) return nil } - -func resourceLxcDelete(d *schema.ResourceData, meta interface{}) error { - return nil -}