a38bf998b9
PR: 280916
9 lines
215 B
Bash
9 lines
215 B
Bash
#!/bin/sh
|
|
|
|
# create the log file, if it does not exist
|
|
if [ ! -f "${PKG_ROOTDIR}/var/log/acme.sh.log" ]
|
|
then
|
|
chroot "${PKG_ROOTDIR}" \
|
|
/usr/bin/install -C -m 640 -o acme -g acme /dev/null /var/log/acme.sh.log
|
|
fi
|