Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

acme client package for pfSense, initial commit #89

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
acme, fix make / install issue
  • Loading branch information
PiBa-NL committed Mar 31, 2016
commit 18573028cb3faa6c60876691c71e910537dbef91
4 changes: 2 additions & 2 deletions security/pfSense-pkg-acme/files/usr/local/pkg/acme.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
</plugins>
<configpath>installedpackages->acme->config</configpath>
<custom_php_install_command>
acme_custom_php_install_command();
pfsense_pkg\acme\acme_custom_php_install_command();
</custom_php_install_command>
<custom_php_deinstall_command>
acme_custom_php_deinstall_command();
pfsense_pkg\acme\acme_custom_php_deinstall_command();
</custom_php_deinstall_command>
</packagegui>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<pfsensepkgs>
<package>
<name>Acme</name>
<name>acme</name>
<pkginfolink>https://doc.pfsense.org/index.php/pfsense-pkg-acme</pkginfolink>
<descr><![CDATA[Automated Certificate Management Environment, for automated use of LetsEncrypt certificates.]]></descr>
<website>https://letsencrypt.org/</website>
Expand Down