Score:1

Ansible can't set hostname

im flag

Im facing a problem with ansible. I'm trying to set the local hostname of the vm to the ansible inventory name.

my task looks like this:

  - name: set hostname to {{ inventory_hostname }}
    hostname:
      name:
        - "{{inventory_hostname}}"

when i run the playbook i get the following error:

fatal: [sl-testvm101]: FAILED! => {"changed": false, "msg": "Command failed rc=1, out=, err=\u001b[0;1;31mCould not set property: Invalid hostname '['sl-testvm101']'\u001b[0m\n"}

the target host is ubuntu 20.04.1

Any idea?

Zeitounator avatar
fr flag
`name` should be a string, not a list => `name: "{{ inventory_hostname }}"`
in flag
You should post this as an answer
Score:2
th flag
      name:
        - "{{inventory_hostname}}"

This is a YAML list; there are places where you can use either a list or a string, but this is not one of them. This parameter only accepts a single string, so that's what you should pass. Otherwise the module tries to set the hostname to a string representation of the list, which is not a valid hostname and fails.

      name: "{{ inventory_hostname }}"
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.