packages feed

dnf-repo-0.1: src/Sudo.hs

module Sudo (doSudo) where

import SimpleCmd (cmdN, sudo_)

-- FIXME make this silent (simple-cmd-0.2.7) unless debug
doSudo :: Bool -> String -> [String] -> IO ()
doSudo dryrun c args = do
  (if dryrun then cmdN else sudo_) c args
  putStrLn ""