#!/bin/sh
ACCTFILE=/var/log/account/pacct
if [ ! -r $ACCTFILE ];then
  mkdir -p /var/log/account/
  touch $ACCTFILE && chmod 600 $ACCTFILE
fi
