diff options
| author | lutter <lutter@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-12-01 17:54:43 +0000 |
|---|---|---|
| committer | lutter <lutter@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-12-01 17:54:43 +0000 |
| commit | 8ff90eff2f3107e47584a474545b4e10cda287a4 (patch) | |
| tree | 986bc82aeb6c0cb6069aa60b36049b9842e9ba40 | |
| parent | f3a0c488b884b59df790fce0192dd1a2d735ad7c (diff) | |
| download | puppet-8ff90eff2f3107e47584a474545b4e10cda287a4.tar.gz puppet-8ff90eff2f3107e47584a474545b4e10cda287a4.tar.xz puppet-8ff90eff2f3107e47584a474545b4e10cda287a4.zip | |
Fix bug in example code: all resources now must have names
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1897 980ebf18-57e1-0310-9a29-db15c13687c0
| -rw-r--r-- | documentation/documentation/internals/big-picture.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/documentation/internals/big-picture.page b/documentation/documentation/internals/big-picture.page index 9372f48ec..06f1ade1d 100644 --- a/documentation/documentation/internals/big-picture.page +++ b/documentation/documentation/internals/big-picture.page @@ -73,7 +73,7 @@ given host. For example: node server1 { # use a locally-available config file - apache { + apache { apache-server1: version => 1, conf => "/nfs/configs/apache/server1.conf", user => www-data, @@ -83,7 +83,7 @@ given host. For example: node server2 { # use a config that we pull from elsewhere - apache { + apache { apache-server2: version => 2, conf => "http://configserver/configs/server2/httpd.conf" user => www-data, |
