- Puppet 5 Essentials(Third Edition)
- Martin Alfke Felix Frank
- 239字
- 2021-07-02 18:22:20
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The file resource type will return mtime and ctime."
A block of code is set as follows:
node 'agent' {
$packages = [ 'apache2', 'libapache2-mod-php5', 'libapache2-mod-passenger', ]
package { $packages:
ensure => 'installed',
before => Service['apache2'],
}
service { 'apache2':
ensure => 'running',
enable => true,
}
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
service { 'puppet': enable => false }
cron { 'puppet-agent-run':
user => 'root',
command =>
'puppet agent --no-daemonize --onetime --
logdest=syslog',
minute => fqdn_rand(60),
hour => absent,
}
Any command-line input or output is written as follows:
puppet:///modules/ntp/ntp.conf
puppet:///modules/my_app/opt/scripts/find_my_app.sh
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "If you are looking for a module that will enhance your agents through additional resource types and providers, look for the Types tab on the module details page. "
- 大學計算機基礎(第二版)
- Visual C++程序設計教程
- C語言程序設計習題解析與上機指導(第4版)
- 人臉識別原理及算法:動態人臉識別系統研究
- MySQL數據庫管理與開發(慕課版)
- Spring實戰(第5版)
- 3D少兒游戲編程(原書第2版)
- Cocos2d-x學習筆記:完全掌握Lua API與游戲項目開發 (未來書庫)
- Mastering Android Development with Kotlin
- 運用后端技術處理業務邏輯(藍橋杯軟件大賽培訓教材-Java方向)
- Java Fundamentals
- C++語言程序設計
- Penetration Testing with the Bash shell
- HTML5移動前端開發基礎與實戰(微課版)
- C/C++代碼調試的藝術