puppet配置模塊(一)node
模塊是puppet的最大單元,模塊裏面有類,類下面有資源。同步文件、遠程執行命令、cron等叫作資源,都是經過模塊來實現的。下面咱們來定義一個模塊:web
在服務端上作以下操做:
mkdir /etc/puppet/modules/testm //模塊名字就是 testm
cd /etc/puppet/modules/testmapache
mkdir {files,manifests,templates} //一個模塊下須要有這三個目錄,files存一些文件(能夠爲空),manifests存配置文件,templates存模板(能夠留空)
touch manifests/init.pp //這個是必須的
vi manifests/init.pp //內容以下
class testm{
file {"/tmp/2.txt":
owner => "root",
group => "root",
mode => 0400,
source => "puppet://$puppetserver/modules/testm/1.txt"
}
}
說明:類名字也叫作testm, 類下面定義了一個資源file,文件名字叫作/tmp/2.txt ,owner,group,mode定義文件的屬主、數組以及權限,source定義這個文件從哪裏獲取。 $puppetserver一會也要定義一下,這裏指的是puppet server服務器上/etc/puppet/modules/testm/files/1.txtvim
puppet配置模塊(二)windows
下面要繼續定義一個很關鍵的配置文件:
vim /etc/puppet/manifests/site.pp //內容以下
$puppetserver = 'web9.xuan.com'
node 'web10'{
include test
}
說明:$puppetserver 定義服務端的主機名,node後面爲客戶端的主機名,這裏面定義該客戶端要加載的模塊
配置完成後,在客戶端執行命令:
puppet agent --test --server=web9.xuan.com //若是客戶端上啓動了puppet服務,不用執行這命令,它也會自動同步的數組
puppet文件或目錄資源(1)服務器
上面的模塊其實只是同步了一個文件而已,那麼要想同步一個目錄如何作?咱們能夠經過實現同步一個目錄來作一個包發佈系統。 好比在一臺機器上編譯安裝好了apache,那麼就能夠經過這樣的模塊把這個apache目錄整個分發到其餘機器上。less
這是在服務端上的配置
模塊配置文件以下:ide
vi /etc/puppet/modules/testm/manifests/init.ppui
class apache{
file {"/usr/local/apache2": (對方機器所在的目錄)
owner => "root",
group => "root",
source => "puppet://$puppetserver/modules/testm/apache2", (這個是從哪裏下載)
recurse => true, (針對目錄的)
purge => true (支持刪除操做)
}
}
cd /etc/puppet/modules/testm/files
mkdir apache2 ; cd apache2
mkdir {conf,bin,logs}
touch conf/a.conf ; touch bin/xuan ; touchu logs/qq.log
echo "asdfghjkl" > conf/a.conf
vim /etc/puppet/manifests/site.pp
$puppetserver = 'web9.xuan.com'
node 'web10'{
include test
include apache
}
能夠在客戶端上ls /usr/local/下會有一個Apache2
服務端
vim /etc/puppet/modules/testm/files/apache2/bin/xuan
qwertyuiop
tail /var/log/messages
其中recurse=>true 這個參數很關鍵,它表示遞歸的意思,沒有這個不能同步目錄。purge參數能夠保證當服務端刪除某個文件,客戶端能夠跟着刪除。
puppet遠程執行命令
遠程執行命令:
vi /etc/puppet/modules/testm/manifests/init.pp
exec {"123":
unless => "test -f /tmp/xuan.txt",
path => ["/bin", "/sbin", "/usr/bin", "/usr/sbin"],
command => "/bin/touch /tmp/xuan.txt"
}
說明:unless後面的命令做爲一個條件,當條件成立時,不會執行下面的命令,若是想要條件成立時,執行下面的命令,用 onlyif。要注意的是,咱們必定要給執行的這條命令加個條件,使用unless就能夠,必須知足這個條件才能執行命令,不然這個命令會一直執行,不太穩當。
puppet配置cron
服務端上配置
cron資源:
cron {"xuan":
command => "/sbin/ntpdate time.windows.com",
user => "root",
minute => "*/10",
monthday => "10-15",
# ensure => "absent" //當增長了這行配置,則會把該cron刪除掉
}
在客戶端上crontab -l你會能夠看到更改
說明:分時日月周分別對應puppet裏面的minute,hour,monthday,month,weekday