From: Michael Orlitzky Date: Fri, 10 Jan 2014 17:33:27 +0000 (-0500) Subject: Add two periods at the end of info messages. X-Git-Tag: 0.0.5~4 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhtsn.git;a=commitdiff_plain;h=4833dc57c60f4aeaa160ec5e599507653a47809b Add two periods at the end of info messages. --- diff --git a/src/Unix.hs b/src/Unix.hs index 17e3960..f26263a 100644 --- a/src/Unix.hs +++ b/src/Unix.hs @@ -92,10 +92,10 @@ create_pid_directory :: FilePath -- ^ The directory to contain the PID file. create_pid_directory pid_directory uid gid = do it_exists <- doesDirectoryExist pid_directory unless it_exists $ do - report_info $ "Creating PID directory " ++ pid_directory + report_info $ "Creating PID directory " ++ pid_directory ++ "." createDirectory pid_directory report_info $ "Changing owner/group of " ++ pid_directory ++ - " to " ++ (show uid) ++ "/" ++ (show gid) + " to " ++ (show uid) ++ "/" ++ (show gid) ++ "." setOwnerAndGroup pid_directory uid gid -- | Write a PID file, install a SIGTERM handler, drop privileges, and