1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
name: ircproxy
version: 0.1
summary: a minimal IRC proxy using bip
description: run the bip IRC proxy in a snap
icon: icon.svg
apps:
ircproxy:
command: run-bip
daemon: simple
uses:
- my-networking
bipmkpw:
command: usr/bin/bipmkpw
config: ./config.sh
uses:
my-networking:
type: migration-skill
caps:
- network-client
- network-service
parts:
ircproxy:
plugin: copy
files:
run-bip: run-bip
config.sh: config.sh
default.yaml: default.yaml
stage-packages:
- bip
- openssl
|