voxpupuli / puppet-vmwaretools

Puppet module to manage VMware Operating System Specific Packages for VMware tools installation.
http://forge.puppetlabs.com/razorsedge/vmwaretools
Apache License 2.0
34 stars 44 forks source link

I was having the same issue. I changed lines 319-322 in vmwaretools\m… #51

Open esarakaitis opened 7 years ago

esarakaitis commented 7 years ago

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.

divad commented 7 years ago

This is not the correct fix, it looks like the fix because the module is currently installing old and out of date VMware Tools. :(

razorsedge commented 7 years ago

@esarakaitis Thank you for your submission. As per the CONTRIBUTING.md file, could you please resubmit from the develop branch?

vox-pupuli-tasks[bot] commented 3 years ago

Dear @esarakaitis, thanks for the PR!

This is Vox Pupuli Tasks, your friendly Vox Pupuli Github Bot. I noticed that your pull request has CI failures. Can you please have a look at the failing CI jobs? If you need any help, you can reach out to us on our IRC channel voxpupuli on Freenode or our Slack channel voxpupuli at slack.puppet.com. You can find my sourcecode at voxpupuli/vox-pupuli-tasks