Edit File: install_lets_encrypt_autossl_provider
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/install_lets_encrypt_autossl_provider # Copyright 2016 cPanel, Inc. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited package scripts::install_lets_encrypt_autossl_provider; use strict; use warnings; use Cpanel::Plugins (); run() if !caller; sub run { return Cpanel::Plugins::install_plugins('cpanel-letsencrypt'); } 1;