Skip to content

Commit

Permalink
Migration from spsuite fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rehmatworks committed Apr 17, 2020
1 parent 763501a commit 5db6357
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -5,7 +5,7 @@ dist
downloads
eggs
parts
spsuite.egg-info
rwssl.egg-info
lib
lib64
test-data
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -3,7 +3,7 @@ Jinja2==2.10.3
MarkupSafe==1.1.1
python-nginx==1.5.3
six==1.12.0
spsuite==2.0.0
rwssl==2.0.0
termcolor==1.1.0
validators==0.14.0
certbot==0.39.0
2 changes: 1 addition & 1 deletion rwssl/__main__.py
@@ -1,3 +1,3 @@
from spsuite.spsuite import *
from rwssl.rwssl import *
if __name__ == '__main__':
main()
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -6,7 +6,7 @@
class SetupSslRenewCron(install):
def run(self):
crondir = '/etc/cron.weekly'
cronfile = os.path.join(crondir, 'spsuite-sslrenewals')
cronfile = os.path.join(crondir, 'rwssl-sslrenewals')
if not os.path.exists(crondir):
os.makedirs(crondir)

Expand All @@ -28,7 +28,7 @@ def run(self):
entry_points={
'console_scripts': [
'rwssl = rwssl.rwssl:main'
],
],``
},
packages=[
'rwssl'
Expand Down

0 comments on commit 5db6357

Please sign in to comment.