File: etc_environment.yml

package info (click to toggle)
python-mitogen 0.3.37-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,728 kB
  • sloc: python: 24,644; sh: 198; makefile: 74; perl: 19; ansic: 18
file content (16 lines) | stat: -rw-r--r-- 561 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# issue #338: ensure /etc/environment is reloaded if it changes.
# Actually this test uses ~/.pam_environment, which is using the same logic,
# but less likely to brick a development workstation

- name: integration/runner/etc_environment.yml
  hosts: test-targets[0]
  gather_facts: true
  tasks:
    - include_tasks: _etc_environment_user.yml
      when: ansible_system == "Linux" and is_mitogen

    - include_tasks: _etc_environment_global.yml
      # Don't destroy laptops.
      when: ansible_virtualization_type == "docker"
  tags:
    - etc_environment