acme-updater 1.0 KB

1234567891011121314151617181920212223242526272829
  1. #! /usr/bin/env python3
  2. # -*- coding: utf8 -*-
  3. # acme-updater - a tool that takes care of automatically replacing
  4. # Let's Encrypt SSL certificates maintained by acmetool
  5. #
  6. # written by Helmut Pozimski 2016-2017
  7. #
  8. # This program is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU General Public License
  10. # as published by the Free Software Foundation; version 2
  11. # of the License.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. # Boston, MA 02110-1301, USA.
  22. """ Script for acme-updater which executes the main function. """
  23. from amulib.main import main
  24. if __name__ == "__main__":
  25. main()