Browse Source

module: delete: be more clear about deletion

tags/v0.9
Maximilian Eschenbacher 6 years ago
parent
commit
72827a07ef
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      _modules/wireguard.py

+ 3
- 2
_modules/wireguard.py View File

@@ -17,9 +17,10 @@ def create(name):

def delete(name):
"""
delete a wireguard interface. This will fail if it does not exist.
delete a interface (not neccessarily a wireguard interface). This will fail
if it does not exist.
"""
return __salt__['cmd.run']('ip link del %s type wireguard' % (name,))
return __salt__['cmd.run']('ip link del %s' % (name,))


def show(name=None, peer=None):

Loading…
Cancel
Save