Fixed post-install

This commit is contained in:
santic-zombie
2024-06-23 17:11:45 +03:00
parent f6282e3371
commit 8988b764d3

View File

@@ -49,14 +49,6 @@ for F in /var/lock/one \
/var/log/one \
/var/run/one;
do
if [ -d "${F}" ]; then
chmod 0750 "${F}"
elif [ -f "${F}" ]; then
chmod 0640 "${F}"
else
continue
fi
chown "${ONE_USER}:${ONE_GROUP}" "${F}"
done