~cgregan/checkbox/extension_check

« back to all changes in this revision

Viewing changes to wireless.txt.in

  • Committer: cgregan at canonical
  • Date: 2013-10-18 19:51:54 UTC
  • Revision ID: cgregan@canonical.com-20131018195154-p5jevnv4of4wma08
local job adjustment

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
name: wireless/iwconfig_info
10
10
requires:
11
11
 device.category == 'WIRELESS'
12
 
 command: cat <<'EOF' | udev_resource | filter_templates -w "category=WIRELESS" | awk "/path: / { print \$2 }"
13
 
_description:
14
 
 This is an automated test to gather some info on the current state of your network devices. If no devices are found, the test will exit with an error.
 
12
command: 
 
13
 cat <<'EOF' | udev_resource | filter_templates -w "category=WIRELESS" | awk "/path: / { print \$2 }"
15
14
 plugin: shell
16
 
 name: wireless/iwconfig_check
 
15
 name: wireless/iwconfig_check_$2
17
16
 requires: device.path == "$1"
18
17
 command: iwconfig $2
19
18
 _description:
20
19
  This test executes iwconfig requests against all the ethernet devices found on the system.
 
20
 EOF
 
21
_description:
 
22
 This is an automated test to gather some info on the current state of your network devices. If no devices are found, the test will exit with an error.