mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
Add CERTBOT_PLUGIN_PATH support
Initial revision Fix interface export path Switch to strict confinement Normalise slot parameters
This commit is contained in:
parent
bcb3554836
commit
4a2618d415
2 changed files with 24 additions and 0 deletions
22
certbot-dns-dnsimple/snap/snapcraft.yaml
Normal file
22
certbot-dns-dnsimple/snap/snapcraft.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: certbot-dns-dnsimple
|
||||
version: script
|
||||
version-script: cd parts/certbot-dns-dnsimple/src && git describe|sed s/^v//
|
||||
summary: DNSimple DNS Authenticator plugin for Certbot
|
||||
description: TBC
|
||||
confinement: strict
|
||||
grade: devel
|
||||
|
||||
parts:
|
||||
certbot-dns-dnsimple:
|
||||
plugin: python
|
||||
source: git://github.com/certbot/certbot
|
||||
source-branch: master
|
||||
source-subdir: certbot-dns-dnsimple
|
||||
python-version: python3
|
||||
|
||||
slots:
|
||||
certbot:
|
||||
interface: content
|
||||
content: certbot-1
|
||||
read:
|
||||
- $SNAP/lib/python3.5/site-packages
|
||||
|
|
@ -2,6 +2,8 @@
|
|||
import collections
|
||||
import itertools
|
||||
import logging
|
||||
import os
|
||||
import sys
|
||||
|
||||
import pkg_resources
|
||||
import six
|
||||
|
|
|
|||
Loading…
Reference in a new issue