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"
|