エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
~nabeken/diary/ : Puppet での俺プラクティスメモ
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
~nabeken/diary/ : Puppet での俺プラクティスメモ
Posted on Thu Aug 14 02:28:28 +0900 2008 by nabeken ntp だとクライアントとサーバに別れている。そ... Posted on Thu Aug 14 02:28:28 +0900 2008 by nabeken ntp だとクライアントとサーバに別れている。そんなときは サーバとクライアントが別れているサービスとか class ntp { file { "/etc/ntp.conf": mode => "0644", owner => root, group => root, content => template("default/etc/ntp.conf"), notify => Service["ntpd"], } } class ntp_server inherits ntp { File["/etc/ntp.conf"] { content => template("${hostname}/etc/ntp.conf"), } } として、クライアント側はたんに include ntp