module ChefCLI::Helpers

def system_command(*command_args)


Runs given commands using mixlib-shellout
def system_command(*command_args)
  cmd = Mixlib::ShellOut.new(*command_args)
  cmd.run_command
  cmd
end