summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r--ipalib/plugable.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index 08a978ed..5e0611f9 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -32,6 +32,7 @@ import threading
import logging
import os
from os import path
+import subprocess
import errors
from errors import check_type, check_isinstance
from config import Environment, Env
@@ -366,6 +367,16 @@ class Plugin(ReadOnly):
assert not hasattr(self, name)
setattr(self, name, getattr(api, name))
+ def call(self, *args):
+ """
+ Call an external command via ``subprocess.call``.
+
+ Returns the exit status of the call.
+ """
+ if hasattr(self, 'log'):
+ self.log.debug('Calling %r', args)
+ return subprocess.call(args)
+
def __repr__(self):
"""
Return 'module_name.class_name()' representation.