1. ホーム
  2. ansible

[解決済み] Ansibleです。Ansible Playbook で Active Directory を変更するには?

2023-06-10 20:48:47

質問

- name: Go to the folder
  command: chdir=/opt/tools/temp

プレイブックを実行すると

TASK: [Go to the folder] ***************************** 
failed: [host] => {"failed": true, "rc": 256}
msg: no command given

どんな助けでも大歓迎です。

どのように解決するのですか?

Ansibleにはカレントディレクトリという概念はありません。playbookで行ったように、特定のタスクに対してカレントディレクトリを指定することは可能です。唯一欠けているのは、実際に実行するコマンドです。これを試してみてください。

- name: Go to the folder and execute command
  command: chdir=/opt/tools/temp ls