File: task.yaml

package info (click to toggle)
snapd 2.71-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 79,536 kB
  • sloc: ansic: 16,114; sh: 16,105; python: 9,941; makefile: 1,890; exp: 190; awk: 40; xml: 22
file content (20 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
summary: Ensure that the core systems have a special apt placeholder

details: |
  Check apt command is not available in uc20+ and there is a fake apt-get script
  for uc16 and uc18.

systems: [ubuntu-core-*]

execute: |
  case "$SPREAD_SYSTEM" in
    ubuntu-core-16-*|ubuntu-core-18-*)
      echo "Check some core systems have the fake apt-get script."
      apt-get | MATCH "Ubuntu Core does not use apt-get, see 'snap --help'!"
      not apt-get
     ;;
    ubuntu-core-*)
      echo "Check other systems do not have the fake apt-get script."
      test "$(command -v apt-get)" = ""
      ;;
  esac