summaryrefslogtreecommitdiff
path: root/test/integration/destructive.yml
blob: 3e8cca385e64ebc70619b9435d51396c545502c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- hosts: testhost
  gather_facts: True
  roles:
    # In destructive because it creates and removes a user
    - { role: test_sudo, tags: test_sudo}
    #- { role: test_su, tags: test_su} # wait till su support is added to local connection, needs tty
    - { role: test_become, tags: test_become}
    - { role: test_service, tags: test_service }
    # Current pip unconditionally uses md5.  We can re-enable if pip switches
    # to a different hash or allows us to not check md5
    - { role: test_pip, tags: test_pip, when: ansible_fips != True }
    - { role: test_gem, tags: test_gem }
    - { role: test_yum, tags: test_yum }
    - { role: test_apt, tags: test_apt }
    - { role: test_apt_repository, tags: test_apt_repository }
    - { role: test_postgresql, tags: test_postgresql}
    - { role: test_mysql_db, tags: test_mysql_db}
    - { role: test_mysql_user, tags: test_mysql_user}
    - { role: test_mysql_variables, tags: test_mysql_variables}
    - { role: test_docker, tags: test_docker, when: ansible_distribution != "Fedora" }
    - { role: test_zypper, tags: test_zypper}