subiquity/examples/snaps
Michael Hudson-Doyle f2d0d0aade update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
..
README.md update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
README.md~ update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
find-output.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-canonical-livepatch.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-conjure-up.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-docker.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-etcd.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-ffmpeg.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-htop.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-keepalived.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-lxd.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-micro.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-mosquitto.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-nextcloud.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-postgresql10.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-prometheus.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-rocketchat-server.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-stress-ng.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-tizonia.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-wekan.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00
info-wormhole.json update default snap store section and examples to server 2018-05-31 09:54:07 +12:00

README.md

Sample snap data

This directory contains canned responses from snapd's /v2/find endpoint that can be shown in the SnapList view by passing the --snaps-from-examples flag to subiquity-tui (instead of waiting on your local snapd and network). It was generated something like this:

$ curl --silent --unix-socket /var/run/snapd.socket a/v2/find?section=server | jq . > find-output.json
$ for x in $(cat find-output.json | jq -r '.result  | .[].name'); do curl --silent --unix-socket /var/run/snapd.socket a/v2/find?name=$x | jq . > info-$x.json; done