Execução do comando não reconhece o recurso Package['php7.2']
vagrant@ubuntu-bionic:$ sudo puppet apply /vagrant/configs/manifests/phpweb.pp
Error: Could not find resource 'Package[php7.2]' in parameter 'require' (file: /vagrant/configs/manifests/phpweb.pp, line: 11) on node ubuntu-bionic
vagrant@ubuntu-bionic:$
exec { 'apt-update':
command => '/usr/bin/apt-get update'
}
package { 'php7.2, php7.2-mysql':
require => Exec['apt-update'],
ensure => installed,
}
exec { 'run-php7':
require => Package['php7.2'],
command => '/usr/bin/php -S localhost:80 &'
}