Instalado como mestre de marionetes, mas por que recebo “puppetca: command not found”?

6
# puppetca --list
-bash: puppetca: command not found

Eu sou novato no servidor Puppet, mas acho que instalei o servidor de fantoches corretamente.

Como conseguir a puppetca?

    
por MacLing 12.12.2012 / 09:26

1 resposta

9

A partir do fantoche 3.0, os puppetca e outros Comandos semelhantes foram tornados obsoletos . Você pode querer usar puppet cert list .

Citando a entrada real:

The legacy standalone executables, which were replaced by subcommands in Puppet 2.6, have been removed. Additionally, running puppet without a subcommand no longer defaults to puppet apply.

┌───────────────┬───────────────────┐
│ Pre-2.6       │ Post-2.6          │
├───────────────┼───────────────────┤
│ puppetmasterd │ puppet master     │
│ puppetd       │ puppet agent      │
│ puppet        │ puppet apply      │
│ puppetca      │ puppet cert       │
│ ralsh         │ puppet resource   │
│ puppetrun     │ puppet kick       │
│ puppetqd      │ puppet queue      │
│ filebucket    │ puppet filebucket │
│ puppetdoc     │ puppet doc        │
│ pi            │ puppet describe   │
└───────────────┴───────────────────┘
    
por 12.12.2012 / 10:41