(12-13-2017, 03:45 PM)varun.naharia Wrote: I solved it for DVD version of CentOS did't try on AltArch, Proftpd is in EPEL. So
yum install epel-release
then
install sentora
Ref:- https://www.centos.org/forums/viewtopic....c6cdeecb2b
Hi,
I also had this issue and found that installing EPEL then allowed ProFTPD to be installed.
However, looking at the installation script, EPEL should be installed by the Sentora script... however there seems to be a problem.
If you look at the installation script here (which redirects to GitHub):
http://sentora.org/install
and find the section which starts:
Code:
#--- Adapt repositories and packages sources
A few lines beneath that you will see this line:
Code:
EPEL_BASE_URL="http://dl.fedoraproject.org/pub/epel/$VER/$ARCH";
However, if you visit the Fedora Project website you will find that the links to the packages now have an additional "Packages" directory in place, so this line needs changing to:
Code:
EPEL_BASE_URL="http://dl.fedoraproject.org/pub/epel/$VER/$ARCH/Packages";
After that (at least in my testing), EPEL is installed correctly during the Sentora installation and it then proceeds to install ProFTPD correctly (and also MCrypt for PHP, which is something else that was missing from my installations).
Keith.
Edit: I think I spotted an issue with this for CentOS 6 users and have posted what I think is a better fix in a post below.