summaryrefslogtreecommitdiff
path: root/clusterman/commands/plugins.py
blob: caed02aee9ee3538235924e9227b572a4b7ea15b (plain)
1
2
3
4
5
6
7
import os
from clusterman.config import CONF


def execute(name,args):
    executable=CONF["plugins"][name]
    os.system(executable+" "+" ".join(args))