11 lines
184 B
Plaintext
11 lines
184 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ ! -d /var/lock/logcheck ]; then
|
||
|
mkdir -p /var/lock/logcheck
|
||
|
fi
|
||
|
chown -R logcheck:logcheck /var/lock/logcheck
|
||
|
|
||
|
su -s /bin/bash -c /usr/sbin/logcheck logcheck
|