- 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. "
- C語言程序設計案例教程
- TypeScript入門與實戰
- 企業級Java EE架構設計精深實踐
- Python進階編程:編寫更高效、優雅的Python代碼
- Mastering macOS Programming
- INSTANT OpenNMS Starter
- Python數據分析從0到1
- Mastering Apache Spark 2.x(Second Edition)
- 從Excel到Python:用Python輕松處理Excel數據(第2版)
- Mastering Apache Maven 3
- Machine Learning in Java
- Access數據庫應用教程(2010版)
- PHP動態網站開發實踐教程
- 網頁設計與制作
- Spring Boot從入門到實戰