Skip to content

Commit

Permalink
tomcat: stub
Browse files Browse the repository at this point in the history
  • Loading branch information
tallero committed Dec 5, 2018
1 parent 647a7cc commit 2189056
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Python scripts

- *certbot_extra_formats*: write a "Let's Ecrypt" certificate compatible with a given application;
- *certbot_extra_formats*: create "Let's Ecrypt" certificates compatible with given applications;
- *pic2pdf*, create pdf files from sets of pictures;
- *who_depends_on*, returns linux module depending on the given input.

3 changes: 2 additions & 1 deletion certbot_extra_formats
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ def write_cert(app, certroot="/etc/letsencrypt/live/", verbose=False):
' > ', certname],
"lighttpd":['cat', ' ',
certs['cert.pem'], ' ', certs['privkey.pem'],
' > ', certname]}
' > ', certname],
"tomcat":["echo '@schoen tell me how to generate the cert'"}

# Create certificate
if apps.get(app, False):
Expand Down

1 comment on commit 2189056

@tallero
Copy link
Owner Author

@tallero tallero commented on 2189056 Dec 5, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#2 do not know how the cert is generated in tomcat

Please sign in to comment.