hugo daily push 2019-07-01 22:00:01
This commit is contained in:
100
content/post/ansible-selectattr-from-list-in-dictionary.md
Normal file
100
content/post/ansible-selectattr-from-list-in-dictionary.md
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
---
|
||||||
|
title: "[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file"
|
||||||
|
date: 2019-07-01T09:06:12+08:00
|
||||||
|
draft: false
|
||||||
|
|
||||||
|
noSummary: false
|
||||||
|
featuredImage: "https://h.cowbay.org/images/post-default-7.jpg"
|
||||||
|
categories: ['Ansible']
|
||||||
|
tags: ['Ansible']
|
||||||
|
author: "Eric Chang"
|
||||||
|
---
|
||||||
|
|
||||||
|
在ansible中,關於如何引用自定義的變數,一直讓我很頭疼
|
||||||
|
|
||||||
|
尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數
|
||||||
|
|
||||||
|
這次還是用selectattr 來處理,希望下次能夠記得...
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
首先是導入的yaml檔案,內容長這樣
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
client_hosts:
|
||||||
|
abc.com:
|
||||||
|
- host: hqdc021
|
||||||
|
ipv4: 192.168.11.21
|
||||||
|
- host: hqdc022
|
||||||
|
ipv4: 192.168.11.22
|
||||||
|
- host: hqdc023
|
||||||
|
ipv4: 192.168.11.23
|
||||||
|
- host: hqdc024
|
||||||
|
ipv4: 192.168.11.24
|
||||||
|
- host: hqdc025
|
||||||
|
iuser: True
|
||||||
|
ipv4: 192.168.11.25
|
||||||
|
user: [yangj]
|
||||||
|
- host: hqdc026
|
||||||
|
ipv4: 192.168.11.26
|
||||||
|
user: [changp, joy]
|
||||||
|
- host: hqdc027
|
||||||
|
ipv4: 192.168.11.27
|
||||||
|
xyz.com:
|
||||||
|
- host: dc021
|
||||||
|
iuser: True
|
||||||
|
ipv4: 192.168.1.21
|
||||||
|
user: [tim]
|
||||||
|
- host: dc022
|
||||||
|
ipv4: 192.168.1.22
|
||||||
|
- host: dc023
|
||||||
|
ipv4: 192.168.1.23
|
||||||
|
- host: dc024
|
||||||
|
ipv4: 192.168.1.24
|
||||||
|
- host: dc025
|
||||||
|
ipv4: 192.168.1.25
|
||||||
|
user: [eric]
|
||||||
|
- host: dc026
|
||||||
|
ipv4: 192.168.1.26
|
||||||
|
user: [erica]
|
||||||
|
- host: dc027
|
||||||
|
ipv4: 192.168.1.27
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
在playbook中,首先先導入這個檔案
|
||||||
|
```
|
||||||
|
- name: load client_host
|
||||||
|
include_vars:
|
||||||
|
file: client_hosts.yml
|
||||||
|
name: ch
|
||||||
|
```
|
||||||
|
|
||||||
|
然後用這個剛剛導入的檔案,去做出想要的清單
|
||||||
|
|
||||||
|
像底下這個,就是指定了client_hosts的 abc.com 這個域名底下,iuser有被定義的資料,再轉成list
|
||||||
|
|
||||||
|
```
|
||||||
|
- name: get internet user list
|
||||||
|
set_fact:
|
||||||
|
iuser_list: "{{ ch['client_host']['abc.com']|selectattr('iuser','defined')|list }}"
|
||||||
|
```
|
||||||
|
|
||||||
|
然後就可以用來做condition了
|
||||||
|
|
||||||
|
```
|
||||||
|
- name: copy environment block to /etc/environment
|
||||||
|
copy:
|
||||||
|
content: |
|
||||||
|
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"
|
||||||
|
all_proxy="{{ proxy_env }}"
|
||||||
|
http_proxy="{{ proxy_env }}"
|
||||||
|
https_proxy="{{ proxy_env }}"
|
||||||
|
no_proxy="localhost,127.0.0.1,192.168.1.1/16,.xyz.com,.abc.com"
|
||||||
|
dest: /etc/environment
|
||||||
|
when: item.ipv4 == ansible_default_ipv4.address
|
||||||
|
with_items: "{{ iuser_list }}"
|
||||||
|
```
|
||||||
|
|
||||||
@@ -115,6 +115,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -139,10 +143,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -156,6 +156,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -90,6 +90,83 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-07-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得…</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
@@ -780,87 +857,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-timeshift-on-ubuntu1804/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/install-timeshift-on-ubuntu1804/">
|
|
||||||
<img src="/images/post-default-11.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2019-03-11</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>最近要開始測試client安裝 ubuntu 18.04 的 ansible playbook</p>
|
|
||||||
|
|
||||||
<p>因為要不斷的修正,所以想到一直有在自己電腦上執行的timeshift這個軟體</p>
|
|
||||||
|
|
||||||
<p>可以很簡單快速的備份、恢復系統狀態</p>
|
|
||||||
|
|
||||||
<p>可是不知道為什麼,在ubuntu 18.04 上安裝就是會發生錯誤….</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/install-timeshift-on-ubuntu1804/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/ubuntu">ubuntu</a>
|
|
||||||
|
|
||||||
<a href="/tags/backup">backup</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -891,6 +887,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -915,10 +915,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -932,6 +928,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||||
<description>Recent content in Eric Chang on MCの飄狂山莊㊣</description>
|
<description>Recent content in Eric Chang on MCの飄狂山莊㊣</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Jul 2019 09:06:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/author/eric-chang/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/author/eric-chang/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</title>
|
||||||
|
<link>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</link>
|
||||||
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</guid>
|
||||||
|
<description><p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得&hellip;</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
|||||||
@@ -90,6 +90,87 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/install-timeshift-on-ubuntu1804/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-03-11</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>最近要開始測試client安裝 ubuntu 18.04 的 ansible playbook</p>
|
||||||
|
|
||||||
|
<p>因為要不斷的修正,所以想到一直有在自己電腦上執行的timeshift這個軟體</p>
|
||||||
|
|
||||||
|
<p>可以很簡單快速的備份、恢復系統狀態</p>
|
||||||
|
|
||||||
|
<p>可是不知道為什麼,在ubuntu 18.04 上安裝就是會發生錯誤….</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ubuntu">ubuntu</a>
|
||||||
|
|
||||||
|
<a href="/tags/backup">backup</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
@@ -854,89 +935,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<img src="/images/post-default-9.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-15</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>最近在測試metabase,記得幾個月前就有測試過</p>
|
|
||||||
|
|
||||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
|
||||||
|
|
||||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
|
||||||
|
|
||||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
<a href="/tags/firefox">firefox</a>
|
|
||||||
|
|
||||||
<a href="/tags/metabase">metabase</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -969,6 +967,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -993,10 +995,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1010,6 +1008,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -90,6 +90,89 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<img src="/images/post-default-9.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-15</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>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||||
|
|
||||||
|
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||||
|
|
||||||
|
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||||
|
|
||||||
|
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
<a href="/tags/firefox">firefox</a>
|
||||||
|
|
||||||
|
<a href="/tags/metabase">metabase</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||||
@@ -610,6 +693,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -634,10 +721,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -651,6 +734,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -101,7 +101,7 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<ul id="all-categories">
|
<ul id="all-categories">
|
||||||
|
|
||||||
<li><a href="/author/eric-chang">Eric chang (26)</a></li>
|
<li><a href="/author/eric-chang">Eric chang (27)</a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@@ -120,6 +120,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -144,10 +148,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -161,6 +161,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<title>Eric Chang</title>
|
<title>Eric Chang</title>
|
||||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||||
<pubDate>Thu, 20 Jun 2019 11:03:12 +0800</pubDate>
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
|
|||||||
398
public/categories/ansible/index.html
Normal file
398
public/categories/ansible/index.html
Normal file
@@ -0,0 +1,398 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="tw">
|
||||||
|
<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="What’s the Worst That Could Happen?">
|
||||||
|
<meta name="keywords" content="linux,blog,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 - What’s the Worst That Could Happen?">
|
||||||
|
<meta itemprop="name" content="Ansible">
|
||||||
|
<meta itemprop="description" content="Ansible - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:title" content="Ansible">
|
||||||
|
<meta property="og:description" content="Ansible - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||||
|
<meta property="og:url" content="https://h.cowbay.org/categories/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/categories/ansible/index.xml" rel="alternate" type="application/rss+xml" title="MCの飄狂山莊㊣" />
|
||||||
|
<link href="https://h.cowbay.org/categories/ansible/index.xml" rel="feed" type="application/rss+xml" title="MCの飄狂山莊㊣" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.a89dfa577f701bffe9659f476ef61241cb2a3452b913e793463b0074a10c0a59.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="">
|
||||||
|
</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">What’s the Worst That Could Happen?</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-from-list-in-dictionary/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-07-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得…</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="paginator">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="recent-posts">
|
||||||
|
<strong></strong>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/change-timezone-in-docker/">[筆記] 修改 docker 容器內的時區 - Change Timezone in Docker</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/transfer-file-content-using-xclip-in-terminal/">Transfer File Content Using Xclip in Terminal</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/inx-collect-detail-hardware-info/">[筆記] inxi 蒐集詳盡的硬體資訊 / inxi Collect Detail Hardware Info</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="categories">
|
||||||
|
<a href="/categories/"><strong></strong></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/proxmox">Proxmox (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ps">Ps (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%A2%8E%E5%BF%B5">碎念 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%BE%A4%E6%9A%89">群暉 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="right">
|
||||||
|
|
||||||
|
<div class="external-profiles">
|
||||||
|
<strong></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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" target="_blank"><img border="0" src="https://www.yapee.tw/mvc/file/publicFile?pathType=data/linkLogo/B0S0F0002585.jpg"></img></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/categories/ansible/index.xml">RSS</a>
|
||||||
|
</div>
|
||||||
|
<div class="author">
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" 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-138954876-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( "tw" )
|
||||||
|
.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'></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>
|
||||||
29
public/categories/ansible/index.xml
Normal file
29
public/categories/ansible/index.xml
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
<?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/categories/ansible/</link>
|
||||||
|
<description>Recent content in Ansible on MCの飄狂山莊㊣</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<lastBuildDate>Mon, 01 Jul 2019 09:06:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
|
<atom:link href="https://h.cowbay.org/categories/ansible/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</title>
|
||||||
|
<link>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</link>
|
||||||
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</guid>
|
||||||
|
<description><p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得&hellip;</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
||||||
1
public/categories/ansible/page/1/index.html
Normal file
1
public/categories/ansible/page/1/index.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://h.cowbay.org/categories/ansible/</title><link rel="canonical" href="https://h.cowbay.org/categories/ansible/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://h.cowbay.org/categories/ansible/" /></head></html>
|
||||||
@@ -101,6 +101,8 @@
|
|||||||
<hr>
|
<hr>
|
||||||
<ul id="all-categories">
|
<ul id="all-categories">
|
||||||
|
|
||||||
|
<li><a href="/categories/ansible">Ansible (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/categories/linux">Linux (1)</a></li>
|
<li><a href="/categories/linux">Linux (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/categories/proxmox">Proxmox (1)</a></li>
|
<li><a href="/categories/proxmox">Proxmox (1)</a></li>
|
||||||
@@ -130,6 +132,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -154,10 +160,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -171,6 +173,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -5,10 +5,20 @@
|
|||||||
<link>https://h.cowbay.org/categories/</link>
|
<link>https://h.cowbay.org/categories/</link>
|
||||||
<description>Recent content in Categories on MCの飄狂山莊㊣</description>
|
<description>Recent content in Categories on MCの飄狂山莊㊣</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<lastBuildDate>Mon, 01 Jul 2019 09:06:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/categories/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Ansible</title>
|
||||||
|
<link>https://h.cowbay.org/categories/ansible/</link>
|
||||||
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/categories/ansible/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Linux</title>
|
<title>Linux</title>
|
||||||
<link>https://h.cowbay.org/categories/linux/</link>
|
<link>https://h.cowbay.org/categories/linux/</link>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -231,6 +231,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -233,6 +233,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -220,6 +220,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -233,6 +233,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -903,6 +903,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -927,10 +931,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -944,6 +944,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -992,6 +992,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1016,10 +1020,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1033,6 +1033,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -243,6 +243,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -220,6 +220,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -191,6 +191,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -215,10 +219,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -232,6 +232,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -95,6 +95,85 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-07-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得…</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
@@ -801,89 +880,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-timeshift-on-ubuntu1804/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/install-timeshift-on-ubuntu1804/">
|
|
||||||
<img src="/images/post-default-11.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2019-03-11</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>最近要開始測試client安裝 ubuntu 18.04 的 ansible playbook</p>
|
|
||||||
|
|
||||||
<p>因為要不斷的修正,所以想到一直有在自己電腦上執行的timeshift這個軟體</p>
|
|
||||||
|
|
||||||
<p>可以很簡單快速的備份、恢復系統狀態</p>
|
|
||||||
|
|
||||||
<p>可是不知道為什麼,在ubuntu 18.04 上安裝就是會發生錯誤….</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/install-timeshift-on-ubuntu1804/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/ubuntu">ubuntu</a>
|
|
||||||
|
|
||||||
<a href="/tags/backup">backup</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -915,6 +911,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -939,10 +939,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -956,6 +952,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -1,4 +1,11 @@
|
|||||||
[
|
[
|
||||||
|
{
|
||||||
|
"iconClass": "fa-folder",
|
||||||
|
"objectID": "https://h.cowbay.org/categories/ansible",
|
||||||
|
"title": "Ansible",
|
||||||
|
"type": "category",
|
||||||
|
"url": "https://h.cowbay.org/categories/ansible"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"iconClass": "fa-folder",
|
"iconClass": "fa-folder",
|
||||||
"objectID": "https://h.cowbay.org/categories/linux",
|
"objectID": "https://h.cowbay.org/categories/linux",
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/</link>
|
<link>https://h.cowbay.org/</link>
|
||||||
<description>Recent content on MCの飄狂山莊㊣</description>
|
<description>Recent content on MCの飄狂山莊㊣</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Jul 2019 09:06:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</title>
|
||||||
|
<link>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</link>
|
||||||
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</guid>
|
||||||
|
<description><p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得&hellip;</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
|||||||
@@ -95,6 +95,89 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/install-timeshift-on-ubuntu1804/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-03-11</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>最近要開始測試client安裝 ubuntu 18.04 的 ansible playbook</p>
|
||||||
|
|
||||||
|
<p>因為要不斷的修正,所以想到一直有在自己電腦上執行的timeshift這個軟體</p>
|
||||||
|
|
||||||
|
<p>可以很簡單快速的備份、恢復系統狀態</p>
|
||||||
|
|
||||||
|
<p>可是不知道為什麼,在ubuntu 18.04 上安裝就是會發生錯誤….</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ubuntu">ubuntu</a>
|
||||||
|
|
||||||
|
<a href="/tags/backup">backup</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
@@ -875,91 +958,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<img src="/images/post-default-9.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-15</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>最近在測試metabase,記得幾個月前就有測試過</p>
|
|
||||||
|
|
||||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
|
||||||
|
|
||||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
|
||||||
|
|
||||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
<a href="/tags/firefox">firefox</a>
|
|
||||||
|
|
||||||
<a href="/tags/metabase">metabase</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -993,6 +991,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -1017,10 +1019,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1034,6 +1032,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -95,6 +95,91 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<img src="/images/post-default-9.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-15</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>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||||
|
|
||||||
|
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||||
|
|
||||||
|
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||||
|
|
||||||
|
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
<a href="/tags/firefox">firefox</a>
|
||||||
|
|
||||||
|
<a href="/tags/metabase">metabase</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||||
@@ -626,6 +711,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -650,10 +739,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -667,6 +752,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -415,6 +415,10 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -439,10 +443,6 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -456,6 +456,10 @@ TCP window size: 85.0 KByte (default)
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -218,6 +218,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -242,10 +246,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -259,6 +259,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -0,0 +1,482 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" lang="tw">
|
||||||
|
<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="What’s the Worst That Could Happen?">
|
||||||
|
<meta name="keywords" content="linux,blog,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||||
|
<meta name="generator" content="Hugo 0.50" />
|
||||||
|
<title> [ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file | MCの飄狂山莊㊣</title>
|
||||||
|
<meta name="description" content="[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file - What’s the Worst That Could Happen?">
|
||||||
|
<meta itemprop="name" content="[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file">
|
||||||
|
<meta itemprop="description" content="[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:title" content="[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file">
|
||||||
|
<meta property="og:description" content="[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file - What’s the Worst That Could Happen?">
|
||||||
|
<meta property="og:image" content="https://h.cowbay.org/images/post-default-7.jpg">
|
||||||
|
<meta property="og:url" content="https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<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.a89dfa577f701bffe9659f476ef61241cb2a3452b913e793463b0074a10c0a59.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="">
|
||||||
|
</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">What’s the Worst That Could Happen?</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-from-list-in-dictionary/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-07-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得…</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
<p>首先是導入的yaml檔案,內容長這樣</p>
|
||||||
|
|
||||||
|
<pre><code>client_hosts:
|
||||||
|
abc.com:
|
||||||
|
- host: hqdc021
|
||||||
|
ipv4: 192.168.11.21
|
||||||
|
- host: hqdc022
|
||||||
|
ipv4: 192.168.11.22
|
||||||
|
- host: hqdc023
|
||||||
|
ipv4: 192.168.11.23
|
||||||
|
- host: hqdc024
|
||||||
|
ipv4: 192.168.11.24
|
||||||
|
- host: hqdc025
|
||||||
|
iuser: True
|
||||||
|
ipv4: 192.168.11.25
|
||||||
|
user: [yangj]
|
||||||
|
- host: hqdc026
|
||||||
|
ipv4: 192.168.11.26
|
||||||
|
user: [changp, joy]
|
||||||
|
- host: hqdc027
|
||||||
|
ipv4: 192.168.11.27
|
||||||
|
xyz.com:
|
||||||
|
- host: dc021
|
||||||
|
iuser: True
|
||||||
|
ipv4: 192.168.1.21
|
||||||
|
user: [tim]
|
||||||
|
- host: dc022
|
||||||
|
ipv4: 192.168.1.22
|
||||||
|
- host: dc023
|
||||||
|
ipv4: 192.168.1.23
|
||||||
|
- host: dc024
|
||||||
|
ipv4: 192.168.1.24
|
||||||
|
- host: dc025
|
||||||
|
ipv4: 192.168.1.25
|
||||||
|
user: [eric]
|
||||||
|
- host: dc026
|
||||||
|
ipv4: 192.168.1.26
|
||||||
|
user: [erica]
|
||||||
|
- host: dc027
|
||||||
|
ipv4: 192.168.1.27
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>在playbook中,首先先導入這個檔案</p>
|
||||||
|
|
||||||
|
<pre><code>- name: load client_host
|
||||||
|
include_vars:
|
||||||
|
file: client_hosts.yml
|
||||||
|
name: ch
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>然後用這個剛剛導入的檔案,去做出想要的清單</p>
|
||||||
|
|
||||||
|
<p>像底下這個,就是指定了client_hosts的 abc.com 這個域名底下,iuser有被定義的資料,再轉成list</p>
|
||||||
|
|
||||||
|
<pre><code>- name: get internet user list
|
||||||
|
set_fact:
|
||||||
|
iuser_list: "{{ ch['client_host']['abc.com']|selectattr('iuser','defined')|list }}"
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
<p>然後就可以用來做condition了</p>
|
||||||
|
|
||||||
|
<pre><code>- name: copy environment block to /etc/environment
|
||||||
|
copy:
|
||||||
|
content: |
|
||||||
|
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"
|
||||||
|
all_proxy="{{ proxy_env }}"
|
||||||
|
http_proxy="{{ proxy_env }}"
|
||||||
|
https_proxy="{{ proxy_env }}"
|
||||||
|
no_proxy="localhost,127.0.0.1,192.168.1.1/16,.xyz.com,.abc.com"
|
||||||
|
dest: /etc/environment
|
||||||
|
when: item.ipv4 == ansible_default_ipv4.address
|
||||||
|
with_items: "{{ iuser_list }}"
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ansible">Ansible</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></strong>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/install-asus-10g-nic-in-proxmox/">Install Asus 10G NIC XG-C100C in Proxmox</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/change-timezone-in-docker/">[筆記] 修改 docker 容器內的時區 - Change Timezone in Docker</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/transfer-file-content-using-xclip-in-terminal/">Transfer File Content Using Xclip in Terminal</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/inx-collect-detail-hardware-info/">[筆記] inxi 蒐集詳盡的硬體資訊 / inxi Collect Detail Hardware Info</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="categories">
|
||||||
|
<a href="/categories/"><strong></strong></a>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/proxmox">Proxmox (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ps">Ps (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%A2%8E%E5%BF%B5">碎念 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/%E7%BE%A4%E6%9A%89">群暉 (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="right">
|
||||||
|
|
||||||
|
<div class="external-profiles">
|
||||||
|
<strong></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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" target="_blank"><img border="0" src="https://www.yapee.tw/mvc/file/publicFile?pathType=data/linkLogo/B0S0F0002585.jpg"></img></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://www.yapee.tw/mvc/onlinePay/webLink?key=lMC74kucH21JChCR77-wJ80ZZ-Poh11amP24BwiDdHw" 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-138954876-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( "tw" )
|
||||||
|
.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'></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>
|
||||||
@@ -329,6 +329,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -353,10 +357,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -370,6 +370,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -284,6 +284,10 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -308,10 +312,6 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -325,6 +325,10 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -258,6 +258,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -282,10 +286,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -299,6 +299,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -321,6 +321,10 @@ Tue May 21 17:39:48 CST 2019
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -345,10 +349,6 @@ Tue May 21 17:39:48 CST 2019
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -362,6 +362,10 @@ Tue May 21 17:39:48 CST 2019
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -392,6 +392,10 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -416,10 +420,6 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -433,6 +433,10 @@ openssl s_client -showcerts -connect mail.example.com:465
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -216,6 +216,10 @@ GRANT a TO b;
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -240,10 +244,6 @@ GRANT a TO b;
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -257,6 +257,10 @@ GRANT a TO b;
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -229,6 +229,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -253,10 +257,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -270,6 +270,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -302,6 +302,10 @@ admin@storage:~$
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -326,10 +330,6 @@ admin@storage:~$
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -343,6 +343,10 @@ admin@storage:~$
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -249,6 +249,10 @@ root@pve:~#
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -273,10 +277,6 @@ root@pve:~#
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -290,6 +290,10 @@ root@pve:~#
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -272,6 +272,10 @@ unused devices: <none>
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -296,10 +300,6 @@ unused devices: <none>
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -313,6 +313,10 @@ unused devices: <none>
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -90,6 +90,83 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-07-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得…</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
<a class="bubble" href="/post/remote-management-system-meshcentral/">
|
||||||
@@ -780,87 +857,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-timeshift-on-ubuntu1804/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/install-timeshift-on-ubuntu1804/">
|
|
||||||
<img src="/images/post-default-11.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2019-03-11</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>最近要開始測試client安裝 ubuntu 18.04 的 ansible playbook</p>
|
|
||||||
|
|
||||||
<p>因為要不斷的修正,所以想到一直有在自己電腦上執行的timeshift這個軟體</p>
|
|
||||||
|
|
||||||
<p>可以很簡單快速的備份、恢復系統狀態</p>
|
|
||||||
|
|
||||||
<p>可是不知道為什麼,在ubuntu 18.04 上安裝就是會發生錯誤….</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/install-timeshift-on-ubuntu1804/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/ubuntu">ubuntu</a>
|
|
||||||
|
|
||||||
<a href="/tags/backup">backup</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -891,6 +887,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -915,10 +915,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -932,6 +928,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/post/</link>
|
<link>https://h.cowbay.org/post/</link>
|
||||||
<description>Recent content in Posts on MCの飄狂山莊㊣</description>
|
<description>Recent content in Posts on MCの飄狂山莊㊣</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Thu, 20 Jun 2019 11:03:12 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Jul 2019 09:06:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/post/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/post/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</title>
|
||||||
|
<link>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</link>
|
||||||
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</guid>
|
||||||
|
<description><p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得&hellip;</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
<title>linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</title>
|
||||||
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
<link>https://h.cowbay.org/post/remote-management-system-meshcentral/</link>
|
||||||
|
|||||||
@@ -310,6 +310,10 @@ root@pve:~#
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -334,10 +338,6 @@ root@pve:~#
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -351,6 +351,10 @@ root@pve:~#
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -774,6 +774,10 @@ sudo apt install joe-jupp
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -798,10 +802,6 @@ sudo apt install joe-jupp
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -815,6 +815,10 @@ sudo apt install joe-jupp
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -234,6 +234,10 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -258,10 +262,6 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -275,6 +275,10 @@ GRUB_CMDLINE_LINUX="rootdelay=90"
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -320,6 +320,10 @@ bbs089.abc.com ansible_ssh_host=192.168.0.89 ansible_ssh_user=root
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -344,10 +348,6 @@ bbs089.abc.com ansible_ssh_host=192.168.0.89 ansible_ssh_user=root
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -361,6 +361,10 @@ bbs089.abc.com ansible_ssh_host=192.168.0.89 ansible_ssh_user=root
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -253,6 +253,10 @@ Apr 23 15:18:48 hqs010 minion: minion [30832]: ip addr [0]
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -277,10 +281,6 @@ Apr 23 15:18:48 hqs010 minion: minion [30832]: ip addr [0]
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -294,6 +294,10 @@ Apr 23 15:18:48 hqs010 minion: minion [30832]: ip addr [0]
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -251,6 +251,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -275,10 +279,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -292,6 +292,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -90,6 +90,87 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/install-timeshift-on-ubuntu1804/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/">
|
||||||
|
<img src="/images/post-default-11.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/install-timeshift-on-ubuntu1804/">Install Timeshift on Ubuntu1804</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-03-11</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>最近要開始測試client安裝 ubuntu 18.04 的 ansible playbook</p>
|
||||||
|
|
||||||
|
<p>因為要不斷的修正,所以想到一直有在自己電腦上執行的timeshift這個軟體</p>
|
||||||
|
|
||||||
|
<p>可以很簡單快速的備份、恢復系統狀態</p>
|
||||||
|
|
||||||
|
<p>可是不知道為什麼,在ubuntu 18.04 上安裝就是會發生錯誤….</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/install-timeshift-on-ubuntu1804/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ubuntu">ubuntu</a>
|
||||||
|
|
||||||
|
<a href="/tags/backup">backup</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
<a class="bubble" href="/post/install-ubuntu1804-on-dell-6ir-raid-controller/">
|
||||||
@@ -854,89 +935,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
|
||||||
|
|
||||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<i class="fa fa-fw fa-pencil"></i>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<article class="default article">
|
|
||||||
|
|
||||||
<div class="featured-image">
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/">
|
|
||||||
<img src="/images/post-default-9.jpg" alt="">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
|
||||||
<div class="meta">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="date moment">2018-11-15</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>最近在測試metabase,記得幾個月前就有測試過</p>
|
|
||||||
|
|
||||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
|
||||||
|
|
||||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
|
||||||
|
|
||||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
|
||||||
|
|
||||||
<p></p>
|
|
||||||
|
|
||||||
|
|
||||||
<a href="/post/change-preferred-language-in-firefox/" class="more"></a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="tags">
|
|
||||||
<i class="fa fa-tags"></i>
|
|
||||||
<div class="links">
|
|
||||||
|
|
||||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
|
||||||
|
|
||||||
<a href="/tags/firefox">firefox</a>
|
|
||||||
|
|
||||||
<a href="/tags/metabase">metabase</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
@@ -969,6 +967,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -993,10 +995,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1010,6 +1008,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -90,6 +90,89 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/">
|
||||||
|
<img src="/images/post-default-9.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2018-11-15</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>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||||
|
|
||||||
|
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||||
|
|
||||||
|
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||||
|
|
||||||
|
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/change-preferred-language-in-firefox/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||||
|
|
||||||
|
<a href="/tags/firefox">firefox</a>
|
||||||
|
|
||||||
|
<a href="/tags/metabase">metabase</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||||
@@ -542,6 +625,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -566,10 +653,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -583,6 +666,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -314,6 +314,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -338,10 +342,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -355,6 +355,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -214,6 +214,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -238,10 +242,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -255,6 +255,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -264,6 +264,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -288,10 +292,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -305,6 +305,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -579,6 +579,10 @@ df -h
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -603,10 +607,6 @@ df -h
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -620,6 +620,10 @@ df -h
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -263,6 +263,10 @@ Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -287,10 +291,6 @@ Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -304,6 +304,10 @@ Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -326,6 +326,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -350,10 +354,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -367,6 +367,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -295,6 +295,10 @@ acl CONNECT method CONNECT
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -319,10 +323,6 @@ acl CONNECT method CONNECT
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -336,6 +336,10 @@ acl CONNECT method CONNECT
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
<sitemap>
|
<sitemap>
|
||||||
<loc>https://h.cowbay.org/tw/sitemap.xml</loc>
|
<loc>https://h.cowbay.org/tw/sitemap.xml</loc>
|
||||||
|
|
||||||
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
|
|
||||||
</sitemap>
|
</sitemap>
|
||||||
|
|
||||||
|
|||||||
@@ -204,6 +204,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -228,10 +232,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -245,6 +245,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -90,6 +90,83 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
|
<a class="bubble" href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<i class="fa fa-fw fa-pencil"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<article class="default article">
|
||||||
|
|
||||||
|
<div class="featured-image">
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">
|
||||||
|
<img src="/images/post-default-7.jpg" alt="">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<h3><a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a></h3>
|
||||||
|
<div class="meta">
|
||||||
|
|
||||||
|
|
||||||
|
<span class="date moment">2019-07-01</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="categories">
|
||||||
|
|
||||||
|
<a href="/categories/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得…</p>
|
||||||
|
|
||||||
|
<p></p>
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/" class="more"></a>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="tags">
|
||||||
|
<i class="fa fa-tags"></i>
|
||||||
|
<div class="links">
|
||||||
|
|
||||||
|
<a href="/tags/ansible">Ansible</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-wrapper u-cf">
|
<div class="article-wrapper u-cf">
|
||||||
|
|
||||||
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
<a class="bubble" href="/post/ansible-selectattr-filter/">
|
||||||
@@ -306,6 +383,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -330,10 +411,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -347,6 +424,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -5,11 +5,26 @@
|
|||||||
<link>https://h.cowbay.org/tags/ansible/</link>
|
<link>https://h.cowbay.org/tags/ansible/</link>
|
||||||
<description>Recent content in Ansible on MCの飄狂山莊㊣</description>
|
<description>Recent content in Ansible on MCの飄狂山莊㊣</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<lastBuildDate>Thu, 29 Nov 2018 11:22:28 +0800</lastBuildDate>
|
<lastBuildDate>Mon, 01 Jul 2019 09:06:12 +0800</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://h.cowbay.org/tags/ansible/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://h.cowbay.org/tags/ansible/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</title>
|
||||||
|
<link>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</link>
|
||||||
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
|
<guid>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</guid>
|
||||||
|
<description><p>在ansible中,關於如何引用自定義的變數,一直讓我很頭疼</p>
|
||||||
|
|
||||||
|
<p>尤其是有牽涉到從外部導入yaml檔案時,更是常常讓我不知道到底該怎麼抓出想要的變數</p>
|
||||||
|
|
||||||
|
<p>這次還是用selectattr 來處理,希望下次能夠記得&hellip;</p>
|
||||||
|
|
||||||
|
<p></p></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>[筆記] 還是 Ansible Selectattr </title>
|
<title>[筆記] 還是 Ansible Selectattr </title>
|
||||||
<link>https://h.cowbay.org/post/ansible-selectattr-filter/</link>
|
<link>https://h.cowbay.org/post/ansible-selectattr-filter/</link>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -233,6 +233,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -243,6 +243,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -196,6 +196,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -220,10 +224,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -237,6 +237,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -187,6 +187,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -211,10 +215,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -228,6 +228,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -277,6 +277,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -301,10 +305,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -318,6 +318,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -189,6 +189,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -213,10 +217,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -230,6 +230,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -194,6 +194,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -218,10 +222,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -235,6 +235,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -231,6 +231,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -103,7 +103,7 @@
|
|||||||
|
|
||||||
<li><a href="/tags/10g">10g (1)</a></li>
|
<li><a href="/tags/10g">10g (1)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/ansible">Ansible (2)</a></li>
|
<li><a href="/tags/ansible">Ansible (3)</a></li>
|
||||||
|
|
||||||
<li><a href="/tags/backup">Backup (1)</a></li>
|
<li><a href="/tags/backup">Backup (1)</a></li>
|
||||||
|
|
||||||
@@ -182,6 +182,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -206,10 +210,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -223,6 +223,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<title>Ansible</title>
|
<title>Ansible</title>
|
||||||
<link>https://h.cowbay.org/tags/ansible/</link>
|
<link>https://h.cowbay.org/tags/ansible/</link>
|
||||||
<pubDate>Thu, 29 Nov 2018 11:22:28 +0800</pubDate>
|
<pubDate>Mon, 01 Jul 2019 09:06:12 +0800</pubDate>
|
||||||
|
|
||||||
<guid>https://h.cowbay.org/tags/ansible/</guid>
|
<guid>https://h.cowbay.org/tags/ansible/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
|
|||||||
@@ -196,6 +196,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -220,10 +224,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -237,6 +237,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -632,6 +632,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -656,10 +660,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -673,6 +673,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -231,6 +231,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -233,6 +233,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -204,6 +204,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -228,10 +232,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -245,6 +245,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -196,6 +196,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -220,10 +224,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -237,6 +237,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -194,6 +194,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -218,10 +222,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -235,6 +235,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -294,6 +294,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -318,10 +322,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -335,6 +335,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -233,6 +233,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -220,6 +220,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -192,6 +192,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -216,10 +220,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -233,6 +233,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -231,6 +231,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -196,6 +196,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -220,10 +224,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -237,6 +237,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -203,6 +203,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -227,10 +231,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -244,6 +244,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -294,6 +294,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -318,10 +322,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -335,6 +335,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -186,6 +186,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -210,10 +214,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -227,6 +227,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -432,6 +432,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -456,10 +460,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -473,6 +473,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -190,6 +190,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -214,10 +218,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -231,6 +231,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -188,6 +188,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -212,10 +216,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -229,6 +229,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -179,6 +179,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -203,10 +207,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -220,6 +220,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -547,6 +547,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -571,10 +575,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -588,6 +588,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -202,6 +202,10 @@
|
|||||||
<strong></strong>
|
<strong></strong>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/post/ansible-selectattr-from-list-in-dictionary/">[ansible] 引用事先定義好的yaml檔裡面的變數 - Ansible Selectattr From List in Dictionary file</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
<a href="/post/remote-management-system-meshcentral/">linux底下遠端遙控&管理的好用系統 Meshcentral / Remote Management & control system Meshcentral</a>
|
||||||
</li>
|
</li>
|
||||||
@@ -226,10 +230,6 @@
|
|||||||
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
<a href="/post/log-all-bash-commands/">[筆記] 紀錄所有下過的指令、時間 / Log All commands with timestamp</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="/post/fix-zpool-device-busy-using-dmsetup/">[筆記] 解決無法建立zpool 的錯誤 / Fix Zpool Device Busy Using dmsetup</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -243,6 +243,10 @@
|
|||||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (20)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="/categories/ansible">Ansible (1)</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="/categories/linux">Linux (1)</a>
|
<a href="/categories/linux">Linux (1)</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -2,6 +2,11 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://h.cowbay.org/post/ansible-selectattr-from-list-in-dictionary/</loc>
|
||||||
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/post/remote-management-system-meshcentral/</loc>
|
<loc>https://h.cowbay.org/post/remote-management-system-meshcentral/</loc>
|
||||||
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
||||||
@@ -140,7 +145,13 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/tags/ansible/</loc>
|
<loc>https://h.cowbay.org/tags/ansible/</loc>
|
||||||
<lastmod>2018-11-29T11:22:28+08:00</lastmod>
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://h.cowbay.org/categories/ansible/</loc>
|
||||||
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@@ -184,6 +195,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/categories/</loc>
|
<loc>https://h.cowbay.org/categories/</loc>
|
||||||
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
<xhtml:link
|
<xhtml:link
|
||||||
rel="alternate"
|
rel="alternate"
|
||||||
@@ -222,7 +234,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
||||||
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
@@ -270,7 +282,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/</loc>
|
<loc>https://h.cowbay.org/</loc>
|
||||||
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
<xhtml:link
|
<xhtml:link
|
||||||
rel="alternate"
|
rel="alternate"
|
||||||
@@ -321,7 +333,7 @@
|
|||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://h.cowbay.org/post/</loc>
|
<loc>https://h.cowbay.org/post/</loc>
|
||||||
<lastmod>2019-06-20T11:03:12+08:00</lastmod>
|
<lastmod>2019-07-01T09:06:12+08:00</lastmod>
|
||||||
<priority>0</priority>
|
<priority>0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user