diff options
-rw-r--r-- | snap/snapcraft.yaml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml new file mode 100644 index 00000000..570c3302 --- /dev/null +++ b/snap/snapcraft.yaml @@ -0,0 +1,37 @@ +name: sosreport +summary: Sos is an extensible, portable, support data collection tool +description: | + Sos is an extensible, portable, support data collection tool + primarily aimed at Linux distributions and other UNIX-like operating + systems. +grade: stable +base: core20 +confinement: classic +adopt-info: sos + +parts: + sos: + plugin: python + source: . + override-pull: | + snapcraftctl pull + snapcraftctl set-version $(git describe --tags --always) + build-packages: + - git + - python3 + - snapcraft + - gettext + +apps: + sos: + environment: + PYTHONPATH: ${SNAP}/lib/python3.8 + command: bin/sos + sosreport: + environment: + PYTHONPATH: ${SNAP}/lib/python3.8 + command: bin/sos report + sos-collector: + environment: + PYTHONPATH: ${SNAP}/lib/python3.8 + command: bin/sos collector |