summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/hostname/tasks/Debian.yml
blob: dfa88fef732a7032e60533d57140d18dfbfbf6af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: Test DebianStrategy by setting hostname
  become: 'yes'
  hostname:
    use: debian
    name: "{{ ansible_distribution_release }}-bebop.ansible.example.com"

- name: Test DebianStrategy by getting current hostname
  command: hostname
  register: get_hostname

- name: Test DebianStrategy by verifying /etc/hostname content
  command: grep -v '^#' /etc/hostname
  register: grep_hostname

- name: Test DebianStrategy using assertions
  assert:
    that:
      - "'{{ ansible_distribution_release }}-bebop.ansible.example.com' in get_hostname.stdout"
      - "'{{ ansible_distribution_release }}-bebop.ansible.example.com' in grep_hostname.stdout"