Anisble for Windows

Posted on Thu 16 June 2016 in blog • Tagged with ansible, windows

久しぶりに ansible で windows を操作するので、メモ。
実行側は Debian Sid でやっているので、apt-get しているところについては、適宜置き換えて欲しい。
ansibleは2.1.0を使っている。

やること

以下を anisble で実行する。

  1. Windows Update
  2. Windows Server 2012 R2 に AD をインストール
  3. ADに適当なダミーエントリを突っ込む

初期設定

ansible 実行サーバーの準備

winrm経由で実行することになるので、 pywinrm が必要。

# pip install ansible pywinrm

Inventory

[windows_server …

Continue reading

Windowsの勉強を始めた

Posted on Mon 15 June 2015 in blog • Tagged with Windows

人生で初めて、Windowsの勉強を始めた。
進捗は以下のgithub pagesから確認できる。
とりあえず、章立てを書いて、内容を徐々に埋めているところ。

内容の誤りやコメントなどあれば、githubのissueで欲しい。


WindowsをAnsibleで設定する

Posted on Thu 28 May 2015 in blog • Tagged with Windows, ansible

資料

Windows Support — Ansible Documentation

マシンの準備

ansibleコマンドを実行するマシン

ansibleがすでに実行できる状況であれば、

pip install http://github.com/diyan/pywinrm/archive/master.zip#egg=pywinrm
pip install kerberos # AD accountを使う場合

とすればOK。

Windowsマシン

要件

  1. WinRM がインストール済み
  2. PowerShell version > 3.0
  3. 自動的に、Windows 7SP1, Windows Server2008 SP1以降になる
  4. Windows Server 2012ははじめからPowershell 4.0がインストールされている

セットアップ方法

  1. Powershell 3.0にアップデートが必要な場合 …

Continue reading