运行以下 Playbook 语法似乎是正确的,但出现以下错误!-“blockinfile”不是 Play 的有效属性

运行以下 Playbook 语法似乎是正确的,但出现以下错误!-“blockinfile”不是 Play 的有效属性

运行以下 Playbook 语法似乎是正确的,但出现以下错误!

ERROR! 'blockinfile' is not a valid attribute for a Play

该错误似乎位于/root/playbook1.yml:第 2 行第 3 列中,但也可能位于文件中的其他位置,具体取决于确切的语法问题。

有问题的行似乎是:

---
- name: insertupdate
  ^ here

我的 Playbook 文件代码是:

---
- name: insertupdate
  blockinfile:
    dest: /etc/network/interfaces
    block: |
      iface eth2 inet static
          address 192.168.0.1
          netmask 255.255.255.0                           

答案1

https://stackoverflow.com/questions/36468870/running-the-following-playbook-syntax-appears-to-be- Correct-but-getting-followin

在上面的网址中找到了解决方案,我在游戏中缺少“任务”。

相关内容