22 lines
481 B
YAML
22 lines
481 B
YAML
name: evilsnap
|
|
base: core22 # the base snap is the execution environment for this snap
|
|
version: '0.1' # just for humans, typically '1.2+git' or '1.3.2'
|
|
summary: Break confinement
|
|
description: |
|
|
Read .bashrc despite strict confinement
|
|
|
|
grade: devel # must be 'stable' to release into candidate/stable channels
|
|
confinement: strict
|
|
|
|
parts:
|
|
my-part:
|
|
# See 'snapcraft plugins'
|
|
plugin: dump
|
|
source: script
|
|
|
|
apps:
|
|
evilsnap:
|
|
command: evilsnap
|
|
plugs:
|
|
- home
|