0

Ansible 2.5 用の RouterOS ネットワーク モジュールを開発しています。

RouterOS シェルは、on_open_shell()イベントで検出され、自動的にスキップまたは却下されるいくつかのメッセージを出力できます。これらはすべて、ここ MikroTik Wiki でDo you want to see the software license? [Y/n]:十分に文書化されています。

これが私がこれをやっている方法です:

def on_open_shell(self):
    try:
        if not prompt.strip().endswith(b'>'):
            self._exec_cli_command(b' ')
    except AnsibleConnectionFailure:
        raise AnsibleConnectionFailure('unable to bypass license prompt')

実際、ライセンスプロンプトをバイパスします。ただし\n、RouterOS デバイスからの応答は、その後に続く実際のコマンドの応答としてカウントされるようです。したがって、プレイブックに次のような 2 つのタスクがあるとします。

---
- hosts: routeros
  gather_facts: no
  connection: network_cli
  tasks:
    - routeros_command:
        commands:
          - /system resource print
          - /system routerboard print
      register: result

    - name: Print result
      debug: var=result.stdout_lines

これは私が得る出力です:

ok: [example] => {
    "result.stdout_lines": [
        [
            ""
        ],
        [
            "uptime: 12h33m29s",
            "                  version: 6.42.1 (stable)",
            "               build-time: Apr/23/2018 10:46:55",
            "              free-memory: 231.0MiB",
            "             total-memory: 249.5MiB",
            "                      cpu: Intel(R)",
            "                cpu-count: 1",
            "            cpu-frequency: 2700MHz",
            "                 cpu-load: 2%",
            "           free-hdd-space: 943.8MiB",
            "          total-hdd-space: 984.3MiB",
            "  write-sect-since-reboot: 7048",
            "         write-sect-total: 7048",
            "        architecture-name: x86",
            "               board-name: x86",
            "                 platform: MikroTik"
        ]
    ]
}

ご覧のとおり、出力が 1 ずれているように見えます。これを修正するにはどうすればよいですか?

4

1 に答える 1

1

問題は、シェル プロンプトを定義する正規表現にあることがわかりました。私はそれを次のように定義しました:

terminal_stdout_re = [
    re.compile(br"\[\w+\@[\w\-\.]+\] ?>"),
    # other cases
]

プロンプトの末尾と一致しなかったため、実際のコマンド出力の前に改行があると Ansible が判断しました。正しい正規表現は次のとおりです。

terminal_stdout_re = [
    re.compile(br"\[\w+\@[\w\-\.]+\] ?> ?$"),
    # other cases
]
于 2018-06-01T15:54:31.063 に答える