-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnapcraft.yaml
executable file
·65 lines (61 loc) · 1.22 KB
/
snapcraft.yaml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: soft-ap
version: 0.2
config: usr/bin/config.py
apps:
dnsmasq:
command: bin/dnsmasq.sh
daemon: simple
uses: [unconfined]
hostapd:
command: bin/hostapd.sh
daemon: simple
uses: [unconfined]
heartbeat:
command: bin/heartbeat.sh
daemon: simple
uses: [unconfined]
server:
command: bin/softap.sh
daemon: simple
uses: [unconfined]
plugs:
unconfined:
interface: old-security
security-template: unconfined
summary: Configurable SoftAP for Ubuntu Core
description: Configurable SoftAP for Ubuntu Core
icon: icon.png
type: app
parts:
softap-server:
plugin: go
source: softap/
snap:
- bin/
softap-static:
plugin: copy
files:
softap.sh: bin/softap.sh
dnsmasq.sh: bin/dnsmasq.sh
hostapd.sh: bin/hostapd.sh
heartbeat.sh: bin/heartbeat.sh
dnsmasq.conf: dnsmasq.conf
hostapd.conf: hostapd.conf
config.py: usr/bin/config.py
static: static
stage-packages:
- dnsmasq
- hostapd
- curl
- iw
- wireless-tools
snap:
- static/
- sbin/
- bin/
- lib/
- usr/bin
- usr/sbin
- usr/lib
- dnsmasq.conf
- hostapd.conf