Запись содержимого переменной в файл в ansible - PullRequest
0 голосов
/ 26 ноября 2018

Я пытаюсь записать переменное содержимое в файл в ansible, как следует из того, что мне не повезло.

tasks:

- name: Collect some information about rootvg space.
  raw: "df -h |grep /$ |awk -F / '{print $4}' |awk '{print $1}' |cut -d - -f1 |/usr/bin/xargs sudo /usr/sbin/vgs --noheading"
  register: res

- name: Send to local file
  local_action: copy content="{{ res }}" dest="/tmp/rootvg_space.log"

Я пытаюсь найти правильный способ сделать это?

1 Ответ

0 голосов
/ 26 ноября 2018
- name: Collect some information about rootvg space
  shell: "df -h |grep /$ |awk -F / '{print $4}' |awk '{print $1}' |cut -d - -f1 |/usr/bin/xargs sudo /usr/sbin/vgs --noheading"
  register: res

- name: Send to local file
  local_action: copy content="{{ res.stdout }}" dest="/tmp/rootvg_space.log"
...