File: task.yaml

package info (click to toggle)
snapd 2.72-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 80,412 kB
  • sloc: sh: 16,506; ansic: 16,211; python: 11,213; makefile: 1,919; exp: 190; awk: 58; xml: 22
file content (24 lines) | stat: -rw-r--r-- 796 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
summary: Verify that 'system' can be used as an alias for 'core'

details: |
    Verify that 'system' can be used as an alias for 'core' when setting and
    getting configuration options.

debug: |
    snap get core -d || true
    snap get system -d || true

execute: |
    echo "When a configuration is set for the core snap"
    snap set core proxy.ftp=http://needle
    snap get core proxy.ftp | MATCH "http://needle"

    echo "It can be retrieved using system alias"
    snap get system proxy.ftp | MATCH "http://needle"

    echo "When a configuration is set using the system alias"
    snap set system proxy.ftp=http://needle2
    snap get system proxy.ftp | MATCH "http://needle2"

    echo "It is also visible through the core snap"
    snap get core proxy.ftp | MATCH "http://needle2"