エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Ansibleでサーバ一括再起動 - Qiita
--- # reboot.yml - name: reboot all hosts and wait it come back in port 22 hosts: all remote_user... --- # reboot.yml - name: reboot all hosts and wait it come back in port 22 hosts: all remote_user: ec2-user sudo: yes tasks: - name: hostname command: uname -n register: hostname - debug: msg="{{hostname.stdout_lines}}" - name: Restart server command: shutdown -r now "Reboot triggered by Ansible" async: 0 poll: 0 ignore_errors: true notify: Wait for server to restart handlers: - name: Wait for ser