GitHub puppet-vmwaretools
Puppet module to manage VMware Operating System Specific Packages for VMware tools installation.

Repo Checks ( 8 of 23 successfull )
Metadata Valid
No translation
passed
Correct Puppet Version Range
Supported Puppet version range is %{PUPPET_SUPPORT_RANGE}
failed
With Puppet Version Range
Puppet version range is present in requirements in metadata.json
passed
With Operatingsystem Support
No translation
passed
Operatingsystems
No translation
passed
Supports Only Current Redhat
No translation
failed
Supports Latest Redhat
No translation
failed
Supports Only Current Centos
No translation
failed
Supports Latest Centos
No translation
failed
Supports Only Current Oraclelinux
No translation
passed
Supports Latest Oraclelinux
No translation
failed
Supports Only Current Sles
No translation
passed
Supports Latest Sles
No translation
failed
Supports Only Current Sled
No translation
passed
Supports Latest Sled
No translation
failed
Supports Only Current Ubuntu
No translation
failed
Supports Latest Ubuntu
No translation
failed
In Modulesync Repo
Is listed as a module managed using modulesync_config
failed
Synced
Has a .msync.yml file
failed
Has Modulesync
Is present in voxpupuli/modulesync_config/managed_modules.yml
failed
Released
Is in modulesync_config and in forge releases.
failed
Valid Sync File
If a (optional) sync file is present, it must not contain a `.travis.yml` entry.
passed
Reference Dot Md
The repository has a REFERENCE.md. It needs to be generated / puppet-strings documentation is missing.
failed

Open Pull Requests

Update apt module

APT version_requirement has now allowed newer versions to be used.
Current testing is with legacy 2.4.1 version of the module until @razorsedge decides to deprecate Puppet 3 support.
When fixture is updated to apt > 2.x all Puppet 3 tests will fail as expected.

Open PR in GitHub
fix deprecated apt:source parameters
tests-fail

fix spec tests to use new format

Open PR in GitHub
add symlinks for pam-modules for proper function
bug
enhancement
waiting on submiter

The rpms provided by vmware install a PAM-Service. This pam-service references modules not provided by RH. See https://access.redhat.com/solutions/977793
This extension creates symlinks to make the service working again or at least to prevent error messages.

Open PR in GitHub
Update apt dependency
enhancement

Update apt module dependency to <5.0.0

Open PR in GitHub
Update zypprepo dependency to new owner
tests-fail

Given the zypprepo module has also changed ownership, it makes sense to update the dependency to reference the new owner.

Open PR in GitHub
I was having the same issue. I changed lines 319-322 in vmwaretools\m…
bug
tests-fail
waiting on submiter

Services we're not starting on RHEL 6.8

Update …anifests\init.pp from:


start => "/sbin/start ${service_name_real}",
stop => "/sbin/stop ${service_name_real}",
status => "/sbin/status ${service_name_real} | grep -q 'start/'",
restart => "/sbin/restart ${service_name_real}",

to:


start => "service ${service_name_real} start",
stop => "service ${service_name_real} stop",
status => "service ${service_name_real} status",
restart => "service ${service_name_real} restart",

It now works properly.

Open PR in GitHub