Назад | Перейти на главную страницу

ansible: вставить содержимое уникальных ключей wordpress и соль в переменную

в handlers / main.yml у меня есть:

- name: get API information for wp-config
       uri:
        url: "https://api.wordpress.org/secret-key/1.1/salt/"
        return_contents: yes
       register: api_info

Я пытаюсь выполнить следующие задачи:

- name: copy sample config file
  copy:
    src: /var/www/wordpress/wp-config-sample.php
    dest: /var/www/wordpress/wp-config.php
    remote_src: yes
  notify: get API information for wp-config

 - name: run API handler now
   meta: flush_handlers

 - name: insert unique key and salts in wp-config
   lineinfile:
     path: /var/www/wordpress/wp-config.php
     regex: "put your unique phrase here"
     insertafter: "put your unique phrase here"
     line: "{{ api_info }}"

К сожалению, значение переменной api_info - это не сам контент, а:

{'status': 200, 'cookies': {}, 'date': 'Thu, 25 Oct 2018 14:53:42 GMT', 'url': 'https://api.wordpress.org/secret-key/1.1/salt/', 'transfer_encoding': 'chunked', 'changed': False, 'server': 'nginx', 'failed': False, 'connection': 'close', 'content_type': 'text/plain;charset=utf-8', 'msg': 'OK (unknown bytes)', 'redirected': False, 'x_frame_options': 'SAMEORIGIN', 'cookies_string': ''}

Как я могу получить актуальное содержание сайта?

Заранее спасибо!

есть небольшая опечатка, параметр return_content не return_contents и uri модуль вернет содержимое вызова uri под api_info.content

---

- hosts: localhost

  tasks:

    - name: get API information for wp-config
      uri:
        url: "https://api.wordpress.org/secret-key/1.1/salt/"
        return_content: True
        method: GET
      register: api_info

    - debug:
        msg: "{{ api_info.content }}"