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 ずれているように見えます。これを修正するにはどうすればよいですか?