hugo daily push 2018-11-27 22:00:01
This commit is contained in:
151
content/post/ansible-selectattr.md
Normal file
151
content/post/ansible-selectattr.md
Normal file
@@ -0,0 +1,151 @@
|
||||
---
|
||||
title: "[筆記] Ansible how to use 'list' in yaml file "
|
||||
date: 2018-11-27T16:50:53+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-1.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['ansible','linux']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
這幾天在玩ansible 時,碰到一個問題
|
||||
|
||||
假如我有個yaml檔作為資料來源,檔名是 abc.yml
|
||||
|
||||
大概長這樣
|
||||
|
||||
```
|
||||
"teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
```
|
||||
|
||||
<!--more-->
|
||||
|
||||
稍微整理一下,比較容易看
|
||||
```
|
||||
"teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": ["hq"],
|
||||
"name": "aa",
|
||||
"users": ["chen","chou","huani","yey","wa"]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": ["hq"],
|
||||
"name": "bb",
|
||||
"users": ["chhiao","chgc","chy","hsi","li","chgchi"]
|
||||
}
|
||||
]
|
||||
|
||||
```
|
||||
|
||||
在 ansible playbook 中,我用 include_vars 把這個檔案叫進來
|
||||
```
|
||||
- name: load teams.yml
|
||||
tags: env
|
||||
include_vars:
|
||||
file: files/konwen/teams.yml
|
||||
```
|
||||
這時候在這個執行階段,就會有一個變數叫 teams 裡面有 chinese_name/description/gid 等等這些屬性
|
||||
|
||||
其中的 location/users 又是另外一個 list
|
||||
|
||||
那如果我想要用users這個清單中的id作為建立帳號的來源
|
||||
|
||||
我就可以用底下這段,先把 users 裡面的內容,指給 dc_users 這個 localvar
|
||||
|
||||
然後加上 when 的條件,限定只有 name == aa 的 users 才會被指定給 dc_users
|
||||
|
||||
|
||||
```
|
||||
- name: set aa_users
|
||||
tags: env
|
||||
set_fact:
|
||||
aa_users: "{{ item.users }}"
|
||||
when: item.name == 'aa'
|
||||
with_items: "{{ teams }}"
|
||||
```
|
||||
|
||||
這樣子執行下來是沒有問題的,不過就是醜了點 XD
|
||||
|
||||
之後要抓 user 帳號時,就可以直接用 aa_users 來跑迴圈
|
||||
|
||||
```
|
||||
- name: create folder for aa_users
|
||||
tags: env
|
||||
file:
|
||||
path: "/tmp/{{ item }}"
|
||||
owner: "{{ item }}"
|
||||
group: "{{ item }}"
|
||||
state: directory
|
||||
with_items: "{{ aa_users }}"
|
||||
```
|
||||
|
||||
很簡單的概念,因為一開始在 teams 這個 var 裡面
|
||||
|
||||
users 這個屬性是一個 list
|
||||
|
||||
p.s 講話一定要參雜用英文單字,這樣看起來比較屌...
|
||||
|
||||
所以沒辦法直接在底下的create folder task 直接叫出來
|
||||
|
||||
如果直接叫 teams.users ,那會是一個清單
|
||||
```
|
||||
["chen","chou","huani","yey","wa"]
|
||||
```
|
||||
|
||||
然後 ansible 也很厲害,就這個樣子,他還是會去忠實的執行建立目錄
|
||||
|
||||
所以在 /tmp 底下就會多出一個
|
||||
|
||||
> ["chen","chou","huani","yey","wa"]
|
||||
|
||||
這個樣子的目錄 ....
|
||||
|
||||
所以我的處理方式就是先把這個清單丟給一個local變數 ( aa_users )
|
||||
|
||||
後面的task再用這個 {{ aa_users }} 來跑,這樣子就 OK 了
|
||||
|
||||
雖說很簡單,但是卡了我一整天吶...
|
||||
|
||||
@@ -115,6 +115,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -139,10 +143,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -153,7 +153,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -90,6 +90,124 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/ansible-selectattr/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/ansible-selectattr/">
|
||||
<img src="/images/post-default-1.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/ansible-selectattr/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/ansible">ansible</a>
|
||||
|
||||
<a href="/tags/linux">linux</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
@@ -691,6 +809,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -715,10 +837,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -729,7 +847,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,65 @@
|
||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||
<description>Recent content in Eric Chang on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
<lastBuildDate>Tue, 27 Nov 2018 16:50:53 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/author/eric-chang/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] Ansible how to use 'list' in yaml file </title>
|
||||
<link>https://h.cowbay.org/post/ansible-selectattr/</link>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/ansible-selectattr/</guid>
|
||||
<description><p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> &quot;teams&quot;: [
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM1&quot;,
|
||||
&quot;description&quot;: &quot;TEAM1&quot;,
|
||||
&quot;gid&quot;: 10125,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;aa&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chen&quot;,
|
||||
&quot;chou&quot;,
|
||||
&quot;huani&quot;,
|
||||
&quot;yey&quot;,
|
||||
&quot;wa&quot;
|
||||
]
|
||||
},
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM2&quot;,
|
||||
&quot;description&quot;: &quot;TEAM2&quot;,
|
||||
&quot;gid&quot;: 10126,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;bb&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chhiao&quot;,
|
||||
&quot;chgc&quot;,
|
||||
&quot;chy&quot;,
|
||||
&quot;hsi&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;chgchi&quot;
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
<hr>
|
||||
<ul id="all-categories">
|
||||
|
||||
<li><a href="/author/eric-chang">Eric chang (7)</a></li>
|
||||
<li><a href="/author/eric-chang">Eric chang (8)</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
@@ -120,6 +120,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -144,10 +148,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -158,7 +158,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<item>
|
||||
<title>Eric Chang</title>
|
||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
||||
<description></description>
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
|
||||
<li><a href="/categories/ps">Ps (1)</a></li>
|
||||
|
||||
<li><a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a></li>
|
||||
<li><a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
@@ -122,6 +122,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -146,10 +150,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -160,7 +160,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<item>
|
||||
<title>筆記</title>
|
||||
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</guid>
|
||||
<description></description>
|
||||
|
||||
@@ -179,6 +179,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -203,10 +207,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -217,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -90,6 +90,124 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/ansible-selectattr/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/ansible-selectattr/">
|
||||
<img src="/images/post-default-1.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/ansible-selectattr/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/ansible">ansible</a>
|
||||
|
||||
<a href="/tags/linux">linux</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
@@ -623,6 +741,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -647,10 +769,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -661,7 +779,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,65 @@
|
||||
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
||||
<description>Recent content in 筆記 on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
<lastBuildDate>Tue, 27 Nov 2018 16:50:53 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] Ansible how to use 'list' in yaml file </title>
|
||||
<link>https://h.cowbay.org/post/ansible-selectattr/</link>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/ansible-selectattr/</guid>
|
||||
<description><p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> &quot;teams&quot;: [
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM1&quot;,
|
||||
&quot;description&quot;: &quot;TEAM1&quot;,
|
||||
&quot;gid&quot;: 10125,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;aa&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chen&quot;,
|
||||
&quot;chou&quot;,
|
||||
&quot;huani&quot;,
|
||||
&quot;yey&quot;,
|
||||
&quot;wa&quot;
|
||||
]
|
||||
},
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM2&quot;,
|
||||
&quot;description&quot;: &quot;TEAM2&quot;,
|
||||
&quot;gid&quot;: 10126,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;bb&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chhiao&quot;,
|
||||
&quot;chgc&quot;,
|
||||
&quot;chy&quot;,
|
||||
&quot;hsi&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;chgchi&quot;
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
|
||||
@@ -2,6 +2,11 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/post/ansible-selectattr/</loc>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/post/change-preferred-language-in-firefox/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
@@ -37,6 +42,12 @@
|
||||
<lastmod>2018-11-05T07:46:53+08:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/ansible/</loc>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/author/</loc>
|
||||
<priority>0</priority>
|
||||
@@ -87,7 +98,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@@ -105,13 +116,13 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/linux/</loc>
|
||||
<lastmod>2018-11-06T15:24:29+08:00</lastmod>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
@@ -139,7 +150,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/post/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@@ -175,7 +186,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/</loc>
|
||||
<lastmod>2018-11-06T14:57:14+08:00</lastmod>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
@@ -209,7 +220,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
|
||||
@@ -179,6 +179,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -203,10 +207,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -217,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -191,6 +191,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -215,10 +219,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -229,7 +229,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -95,6 +95,126 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/ansible-selectattr/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/ansible-selectattr/">
|
||||
<img src="/images/post-default-1.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/ansible-selectattr/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/ansible">ansible</a>
|
||||
|
||||
<a href="/tags/linux">linux</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
@@ -709,6 +829,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -733,10 +857,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -747,7 +867,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -20,6 +20,13 @@
|
||||
"type": "author",
|
||||
"url": "https://h.cowbay.org/author/eric-chang"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/ansible",
|
||||
"title": "Ansible",
|
||||
"type": "tag",
|
||||
"url": "https://h.cowbay.org/tags/ansible"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/bookstack",
|
||||
|
||||
@@ -5,11 +5,65 @@
|
||||
<link>https://h.cowbay.org/</link>
|
||||
<description>Recent content on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
<lastBuildDate>Tue, 27 Nov 2018 16:50:53 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] Ansible how to use 'list' in yaml file </title>
|
||||
<link>https://h.cowbay.org/post/ansible-selectattr/</link>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/ansible-selectattr/</guid>
|
||||
<description><p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> &quot;teams&quot;: [
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM1&quot;,
|
||||
&quot;description&quot;: &quot;TEAM1&quot;,
|
||||
&quot;gid&quot;: 10125,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;aa&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chen&quot;,
|
||||
&quot;chou&quot;,
|
||||
&quot;huani&quot;,
|
||||
&quot;yey&quot;,
|
||||
&quot;wa&quot;
|
||||
]
|
||||
},
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM2&quot;,
|
||||
&quot;description&quot;: &quot;TEAM2&quot;,
|
||||
&quot;gid&quot;: 10126,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;bb&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chhiao&quot;,
|
||||
&quot;chgc&quot;,
|
||||
&quot;chy&quot;,
|
||||
&quot;hsi&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;chgchi&quot;
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
|
||||
516
public/post/ansible-selectattr/index.html
Normal file
516
public/post/ansible-selectattr/index.html
Normal file
@@ -0,0 +1,516 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] Ansible how to use 'list' in yaml file | MC部落</title>
|
||||
<meta name="description" content="[筆記] Ansible how to use 'list' in yaml file - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] Ansible how to use 'list' in yaml file ">
|
||||
<meta itemprop="description" content="[筆記] Ansible how to use 'list' in yaml file - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] Ansible how to use 'list' in yaml file ">
|
||||
<meta property="og:description" content="[筆記] Ansible how to use 'list' in yaml file - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://h.cowbay.org/images/post-default-1.jpg">
|
||||
<meta property="og:url" content="https://h.cowbay.org/post/ansible-selectattr/">
|
||||
<meta property="og:site_name" content="MC部落">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/post/ansible-selectattr/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/ansible-selectattr/">
|
||||
<img src="/images/post-default-1.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>稍微整理一下,比較容易看</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": ["hq"],
|
||||
"name": "aa",
|
||||
"users": ["chen","chou","huani","yey","wa"]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": ["hq"],
|
||||
"name": "bb",
|
||||
"users": ["chhiao","chgc","chy","hsi","li","chgchi"]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p>在 ansible playbook 中,我用 include_vars 把這個檔案叫進來</p>
|
||||
|
||||
<pre><code>- name: load teams.yml
|
||||
tags: env
|
||||
include_vars:
|
||||
file: files/konwen/teams.yml
|
||||
</code></pre>
|
||||
|
||||
<p>這時候在這個執行階段,就會有一個變數叫 teams 裡面有 chinese_name/description/gid 等等這些屬性</p>
|
||||
|
||||
<p>其中的 location/users 又是另外一個 list</p>
|
||||
|
||||
<p>那如果我想要用users這個清單中的id作為建立帳號的來源</p>
|
||||
|
||||
<p>我就可以用底下這段,先把 users 裡面的內容,指給 dc_users 這個 localvar</p>
|
||||
|
||||
<p>然後加上 when 的條件,限定只有 name == aa 的 users 才會被指定給 dc_users</p>
|
||||
|
||||
<pre><code>- name: set aa_users
|
||||
tags: env
|
||||
set_fact:
|
||||
aa_users: "{{ item.users }}"
|
||||
when: item.name == 'aa'
|
||||
with_items: "{{ teams }}"
|
||||
</code></pre>
|
||||
|
||||
<p>這樣子執行下來是沒有問題的,不過就是醜了點 XD</p>
|
||||
|
||||
<p>之後要抓 user 帳號時,就可以直接用 aa_users 來跑迴圈</p>
|
||||
|
||||
<pre><code>- name: create folder for aa_users
|
||||
tags: env
|
||||
file:
|
||||
path: "/tmp/{{ item }}"
|
||||
owner: "{{ item }}"
|
||||
group: "{{ item }}"
|
||||
state: directory
|
||||
with_items: "{{ aa_users }}"
|
||||
</code></pre>
|
||||
|
||||
<p>很簡單的概念,因為一開始在 teams 這個 var 裡面</p>
|
||||
|
||||
<p>users 這個屬性是一個 list</p>
|
||||
|
||||
<p>p.s 講話一定要參雜用英文單字,這樣看起來比較屌…</p>
|
||||
|
||||
<p>所以沒辦法直接在底下的create folder task 直接叫出來</p>
|
||||
|
||||
<p>如果直接叫 teams.users ,那會是一個清單</p>
|
||||
|
||||
<pre><code> ["chen","chou","huani","yey","wa"]
|
||||
</code></pre>
|
||||
|
||||
<p>然後 ansible 也很厲害,就這個樣子,他還是會去忠實的執行建立目錄</p>
|
||||
|
||||
<p>所以在 /tmp 底下就會多出一個</p>
|
||||
|
||||
<blockquote>
|
||||
<p>[“chen”,“chou”,“huani”,“yey”,“wa”]</p>
|
||||
</blockquote>
|
||||
|
||||
<p>這個樣子的目錄 ….</p>
|
||||
|
||||
<p>所以我的處理方式就是先把這個清單丟給一個local變數 ( aa_users )</p>
|
||||
|
||||
<p>後面的task再用這個 {{ aa_users }} 來跑,這樣子就 OK 了</p>
|
||||
|
||||
<p>雖說很簡單,但是卡了我一整天吶…</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/ansible">ansible</a>
|
||||
|
||||
<a href="/tags/linux">linux</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "h-cowbay-org-1" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -284,6 +284,10 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -308,10 +312,6 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -322,7 +322,7 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -258,6 +258,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -282,10 +286,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -296,7 +296,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -216,6 +216,10 @@ GRANT a TO b;
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -240,10 +244,6 @@ GRANT a TO b;
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -254,7 +254,7 @@ GRANT a TO b;
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -302,6 +302,10 @@ admin@storage:~$
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -326,10 +330,6 @@ admin@storage:~$
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -340,7 +340,7 @@ admin@storage:~$
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -90,6 +90,124 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/ansible-selectattr/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/ansible-selectattr/">
|
||||
<img src="/images/post-default-1.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/ansible-selectattr/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/ansible">ansible</a>
|
||||
|
||||
<a href="/tags/linux">linux</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
@@ -623,6 +741,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -647,10 +769,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -661,7 +779,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,65 @@
|
||||
<link>https://h.cowbay.org/post/</link>
|
||||
<description>Recent content in Posts on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
<lastBuildDate>Tue, 27 Nov 2018 16:50:53 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/post/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] Ansible how to use 'list' in yaml file </title>
|
||||
<link>https://h.cowbay.org/post/ansible-selectattr/</link>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/ansible-selectattr/</guid>
|
||||
<description><p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> &quot;teams&quot;: [
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM1&quot;,
|
||||
&quot;description&quot;: &quot;TEAM1&quot;,
|
||||
&quot;gid&quot;: 10125,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;aa&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chen&quot;,
|
||||
&quot;chou&quot;,
|
||||
&quot;huani&quot;,
|
||||
&quot;yey&quot;,
|
||||
&quot;wa&quot;
|
||||
]
|
||||
},
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM2&quot;,
|
||||
&quot;description&quot;: &quot;TEAM2&quot;,
|
||||
&quot;gid&quot;: 10126,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;bb&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chhiao&quot;,
|
||||
&quot;chgc&quot;,
|
||||
&quot;chy&quot;,
|
||||
&quot;hsi&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;chgchi&quot;
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
|
||||
@@ -251,6 +251,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -275,10 +279,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -289,7 +289,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -295,6 +295,10 @@ acl CONNECT method CONNECT
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -319,10 +323,6 @@ acl CONNECT method CONNECT
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -333,7 +333,7 @@ acl CONNECT method CONNECT
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<sitemap>
|
||||
<loc>https://h.cowbay.org/en/sitemap.xml</loc>
|
||||
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<lastmod>2018-11-27T16:50:53+08:00</lastmod>
|
||||
|
||||
</sitemap>
|
||||
|
||||
|
||||
417
public/tags/ansible/index.html
Normal file
417
public/tags/ansible/index.html
Normal file
@@ -0,0 +1,417 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> Ansible | MC部落</title>
|
||||
<meta name="description" content="Ansible - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="Ansible">
|
||||
<meta itemprop="description" content="Ansible - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="Ansible">
|
||||
<meta property="og:description" content="Ansible - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/tags/ansible/">
|
||||
<meta property="og:site_name" content="MC部落"><meta property="og:type" content="website">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
<link href="https://h.cowbay.org/tags/ansible/index.xml" rel="alternate" type="application/rss+xml" title="MC部落" />
|
||||
<link href="https://h.cowbay.org/tags/ansible/index.xml" rel="feed" type="application/rss+xml" title="MC部落" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/ansible-selectattr/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/ansible-selectattr/">
|
||||
<img src="/images/post-default-1.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/ansible-selectattr/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/ansible">ansible</a>
|
||||
|
||||
<a href="/tags/linux">linux</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="paginator">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
-
|
||||
<a href="https://h.cowbay.org/tags/ansible/index.xml">RSS</a>
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
68
public/tags/ansible/index.xml
Normal file
68
public/tags/ansible/index.xml
Normal file
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Ansible on MC部落</title>
|
||||
<link>https://h.cowbay.org/tags/ansible/</link>
|
||||
<description>Recent content in Ansible on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Tue, 27 Nov 2018 16:50:53 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/tags/ansible/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] Ansible how to use 'list' in yaml file </title>
|
||||
<link>https://h.cowbay.org/post/ansible-selectattr/</link>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/ansible-selectattr/</guid>
|
||||
<description><p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> &quot;teams&quot;: [
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM1&quot;,
|
||||
&quot;description&quot;: &quot;TEAM1&quot;,
|
||||
&quot;gid&quot;: 10125,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;aa&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chen&quot;,
|
||||
&quot;chou&quot;,
|
||||
&quot;huani&quot;,
|
||||
&quot;yey&quot;,
|
||||
&quot;wa&quot;
|
||||
]
|
||||
},
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM2&quot;,
|
||||
&quot;description&quot;: &quot;TEAM2&quot;,
|
||||
&quot;gid&quot;: 10126,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;bb&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chhiao&quot;,
|
||||
&quot;chgc&quot;,
|
||||
&quot;chy&quot;,
|
||||
&quot;hsi&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;chgchi&quot;
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -202,6 +202,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -226,10 +230,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -240,7 +240,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -202,6 +202,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -226,10 +230,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -240,7 +240,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -189,6 +189,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -213,10 +217,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -227,7 +227,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -194,6 +194,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -218,10 +222,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -232,7 +232,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -101,6 +101,8 @@
|
||||
<hr>
|
||||
<ul id="all-categories">
|
||||
|
||||
<li><a href="/tags/ansible">Ansible (1)</a></li>
|
||||
|
||||
<li><a href="/tags/bookstack">Bookstack (1)</a></li>
|
||||
|
||||
<li><a href="/tags/docker">Docker (1)</a></li>
|
||||
@@ -109,7 +111,7 @@
|
||||
|
||||
<li><a href="/tags/firefox">Firefox (1)</a></li>
|
||||
|
||||
<li><a href="/tags/linux">Linux (1)</a></li>
|
||||
<li><a href="/tags/linux">Linux (2)</a></li>
|
||||
|
||||
<li><a href="/tags/metabase">Metabase (1)</a></li>
|
||||
|
||||
@@ -146,6 +148,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -170,10 +176,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -184,7 +186,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,20 @@
|
||||
<link>https://h.cowbay.org/tags/</link>
|
||||
<description>Recent content in Tags on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Tue, 06 Nov 2018 14:57:14 +0800</lastBuildDate>
|
||||
<lastBuildDate>Tue, 27 Nov 2018 16:50:53 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>Ansible</title>
|
||||
<link>https://h.cowbay.org/tags/ansible/</link>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/tags/ansible/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Bookstack</title>
|
||||
<link>https://h.cowbay.org/tags/bookstack/</link>
|
||||
@@ -49,7 +58,7 @@
|
||||
<item>
|
||||
<title>Linux</title>
|
||||
<link>https://h.cowbay.org/tags/linux/</link>
|
||||
<pubDate>Tue, 06 Nov 2018 15:24:29 +0800</pubDate>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/tags/linux/</guid>
|
||||
<description></description>
|
||||
|
||||
@@ -90,6 +90,124 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/ansible-selectattr/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/ansible-selectattr/">
|
||||
<img src="/images/post-default-1.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> "teams": [
|
||||
{
|
||||
"chinese_name": "TEAM1",
|
||||
"description": "TEAM1",
|
||||
"gid": 10125,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "aa",
|
||||
"users": [
|
||||
"chen",
|
||||
"chou",
|
||||
"huani",
|
||||
"yey",
|
||||
"wa"
|
||||
]
|
||||
},
|
||||
{
|
||||
"chinese_name": "TEAM2",
|
||||
"description": "TEAM2",
|
||||
"gid": 10126,
|
||||
"location": [
|
||||
"hq"
|
||||
],
|
||||
"name": "bb",
|
||||
"users": [
|
||||
"chhiao",
|
||||
"chgc",
|
||||
"chy",
|
||||
"hsi",
|
||||
"li",
|
||||
"li",
|
||||
"chgchi"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/ansible-selectattr/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/ansible">ansible</a>
|
||||
|
||||
<a href="/tags/linux">linux</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/nice-du-report-tool-durep/">
|
||||
@@ -189,6 +307,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -213,10 +335,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -227,7 +345,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,65 @@
|
||||
<link>https://h.cowbay.org/tags/linux/</link>
|
||||
<description>Recent content in Linux on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Tue, 06 Nov 2018 15:24:29 +0800</lastBuildDate>
|
||||
<lastBuildDate>Tue, 27 Nov 2018 16:50:53 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/tags/linux/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] Ansible how to use 'list' in yaml file </title>
|
||||
<link>https://h.cowbay.org/post/ansible-selectattr/</link>
|
||||
<pubDate>Tue, 27 Nov 2018 16:50:53 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/ansible-selectattr/</guid>
|
||||
<description><p>這幾天在玩ansible 時,碰到一個問題</p>
|
||||
|
||||
<p>假如我有個yaml檔作為資料來源,檔名是 abc.yml</p>
|
||||
|
||||
<p>大概長這樣</p>
|
||||
|
||||
<pre><code> &quot;teams&quot;: [
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM1&quot;,
|
||||
&quot;description&quot;: &quot;TEAM1&quot;,
|
||||
&quot;gid&quot;: 10125,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;aa&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chen&quot;,
|
||||
&quot;chou&quot;,
|
||||
&quot;huani&quot;,
|
||||
&quot;yey&quot;,
|
||||
&quot;wa&quot;
|
||||
]
|
||||
},
|
||||
{
|
||||
&quot;chinese_name&quot;: &quot;TEAM2&quot;,
|
||||
&quot;description&quot;: &quot;TEAM2&quot;,
|
||||
&quot;gid&quot;: 10126,
|
||||
&quot;location&quot;: [
|
||||
&quot;hq&quot;
|
||||
],
|
||||
&quot;name&quot;: &quot;bb&quot;,
|
||||
&quot;users&quot;: [
|
||||
&quot;chhiao&quot;,
|
||||
&quot;chgc&quot;,
|
||||
&quot;chy&quot;,
|
||||
&quot;hsi&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;li&quot;,
|
||||
&quot;chgchi&quot;
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
</code></pre>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Nice Du Report Tool Durep</title>
|
||||
<link>https://h.cowbay.org/post/nice-du-report-tool-durep/</link>
|
||||
|
||||
@@ -194,6 +194,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -218,10 +222,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -232,7 +232,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -203,6 +203,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -227,10 +231,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -241,7 +241,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -179,6 +179,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -203,10 +207,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -217,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -192,6 +192,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -216,10 +220,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -230,7 +230,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -203,6 +203,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -227,10 +231,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -241,7 +241,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -203,6 +203,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -227,10 +231,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -241,7 +241,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -198,6 +198,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -222,10 +226,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -236,7 +236,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -179,6 +179,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -203,10 +207,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -217,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -454,6 +454,10 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/ansible-selectattr/">[筆記] Ansible how to use 'list' in yaml file </a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
@@ -478,10 +482,6 @@
|
||||
<a href="/post/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -492,7 +492,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (7)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
Reference in New Issue
Block a user