Skip to content

Commit

Permalink
構成例の調整
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcat0090 committed Jul 19, 2016
1 parent 689f94d commit 83faa00
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -234,23 +234,23 @@ <h2>hosts</h2>
<h2>playbookの構成</h2>
<p>構成例(ベストプラクティスからはすこし調整しています)</p>
<pre><code class="hljs" data-trim contenteditable>
try-ansible-best-practices
ansible/
├── site.yml
├── development.yml # 対象毎に実行するロールを指定する
├── ci.yml # 対象毎に実行するロールを指定する
├── setup.yml # プロジェクトのセットアップ用
├── update.yml # プロジェクトのアップデート用
├── vars
└── プロジェクト.yml # プロジェクト毎の定数
└── roles
└── common
├── handlers # notifyが指定されると、ここに記述されたタスクを実行する
└── main.yml
├── tasks # このロールで実行されるタスク
└── main.yml
├── vars # ロールごとの定数
└── main.yml
└── templates # templateモジュールで使用される雛形をおく
├── vars/
│ └── プロジェクト.yml # プロジェクト毎の定数
└── roles/
└── common/
├── handlers/ # notifyが指定されると、ここに記述されたタスクを実行する
│ └── main.yml
├── tasks/ # このロールで実行されるタスク
│ └── main.yml
├── vars/ # ロールごとの定数
│ └── main.yml
└── templates/ # templateモジュールで使用される雛形をおく
└── php.ini.j2
</code></pre>
</section>
Expand Down

0 comments on commit 83faa00

Please sign in to comment.