Isolated the issue - *args.

This commit is contained in:
Robert Keizer 2013-05-27 23:51:46 -05:00
parent b4aa777767
commit 50f388b7c2

View File

@ -87,7 +87,8 @@ def _make_function( cmd_name ):
ret = { }
# Run the command.
res = salt_cmd.run_all( "%s %s %s" % ( _check_zfs( ), cmd_name, args ) )
#TODO - add arguments into this.
res = salt_cmd.run_all( "%s %s" % ( _check_zfs( ), cmd_name ) )
# Make a note of the error in the return object if retcode
# not 0.