mirror of
https://github.com/cloudpanel-io/cloudpanel-ce.git
synced 2026-04-05 20:31:58 +02:00
Debian 11: path for sh and find is wrong #313
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @aalonzi on 11/27/2023
CloudPanel version(s) affected
2.4.0
Description
during create a new website, the script try to use /usr/bin/find and /usr/bin/sh but on Debian 11 the correct path is /bin/find and /bin/sh
How to reproduce
install cloudpanel on Debian 11 and try to create new website
Possible Solution
use correct path or make symlink:
ln -s /bin/find /usr/bin/find
ln -s /bin/sh /usr/bin/sh
Additional Context
No response