diff options
Diffstat (limited to 'system/letsencrypt/letsencrypt.SlackBuild')
-rw-r--r-- | system/letsencrypt/letsencrypt.SlackBuild | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/system/letsencrypt/letsencrypt.SlackBuild b/system/letsencrypt/letsencrypt.SlackBuild index ceefe5f90b..fbbec0c1c4 100644 --- a/system/letsencrypt/letsencrypt.SlackBuild +++ b/system/letsencrypt/letsencrypt.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=letsencrypt SRCNAM=certbot -VERSION=${VERSION:-0.14.0} +VERSION=${VERSION:-0.14.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -72,6 +72,12 @@ find -L . \ sed -i "/'argparse',/d" setup.py sed -i "/'argparse',/d" acme/setup.py +sed -i 's/apache2ctl/apachectl/' certbot-apache/certbot_apache/constants.py + +for i in $(grep -ri /apache2 * | cut -d: -f1 | sort -u) +do + sed -i 's/\/apache2/\/httpd/' $i +done # install acme-protocol first cd acme @@ -79,17 +85,17 @@ python setup.py install --root=$PKG # install letsencrypt client cd .. - python setup.py install --root=$PKG # this plugins are not working for Slackware yet, but we will keep it here # install apache plugin -#cd letsencrypt-apache -#python setup.py install --root=$PKG +cd certbot-apache +python setup.py install --root=$PKG +cd .. # install nginx plugin -#cd ../letsencrypt-nginx +#cd ../certbot-nginx #python setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |