1

エージェント マシンでパペットをセットアップしようとしています。エージェント マシンでコマンドを実行でき、マスターを確認したときにその証明書に署名しました。エージェント マシンで次のコマンドを実行します。

sudo puppet agent --test --onetime --verbose

次の出力が得られます

Info: Retrieving plugin
Info: Caching catalog for vpuppetslave.jrock20041.dyndns.org
Info: Applying configuration version '1373014974'

エージェント マシンの puppet.conf ファイルは次のとおりです。

[main]
logdir=/var/log/puppet
vardir=/var/lib/puppet
ssldir=/var/lib/puppet/ssl
rundir=/var/run/puppet
factpath=$vardir/lib/facter
templatedir=$confdir/templates
server = mediacenter.jrock20041.dyndns.org

[master]
# These are needed when the puppetmaster is run by passenger
# and can safely be removed if webrick is used.
ssl_client_header = SSL_CLIENT_S_DN
ssl_client_verify_header = SSL_CLIENT_VERIFY

[agent]
server = mediacenter.jrock20041.dyndns.org

マスター マシンでは、ここに私の site.pp ファイルがあります

import 'nodes.pp'

マスターマシンでは、これが私のnodes.ppファイルです

node 'mediacenter' {
    #include nginx
    #include openssh-server
    #include ssh

    file { '/tmp/hello':
            content => "Hello, World!\n",
    }

    user { 'jcostanzo':
            ensure     => present,
            comment    => 'John Costanzo',
            home       => '/home/jcostanzo',
            managehome => true,
    }
}

node 'vpuppetslave' {
    #include nginx
    #include openssh-server
    #include ssh

    file { '/tmp/hello':
            content => "Hello, World!\n",
    }

    user { 'jcostanzo':
            ensure     => present,
            comment    => 'John Costanzo',
            home       => '/home/jcostanzo',
            managehome => true,
    }
}

私が間違っているのかわかりません。助けてくれてありがとう

4

1 に答える 1