Marcus Meissner
6a419c6707
- cleanup of acct * Add install section in service unit (bnc#867138) * Add a simple script to create pacct file OBS-URL: https://build.opensuse.org/request/show/226397 OBS-URL: https://build.opensuse.org/package/show/Base:System/acct?expand=0&rev=34
8 lines
101 B
Bash
8 lines
101 B
Bash
#!/bin/bash
|
|
ACCTFILE=/var/account/pacct
|
|
if test ! -e $ACCTFILE
|
|
then
|
|
umask 066
|
|
> $ACCTFILE
|
|
fi
|