I was having the same issue. I changed lines 319-322 in vmwaretools\m…#51
I was having the same issue. I changed lines 319-322 in vmwaretools\m…#51esarakaitis wants to merge 6 commits intovoxpupuli:masterfrom
Conversation
…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.
Updated spacing
|
This is not the correct fix, it looks like the fix because the module is currently installing old and out of date VMware Tools. :( |
|
@esarakaitis Thank you for your submission. As per the CONTRIBUTING.md file, could you please resubmit from the |
|
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? |
|
Thank you for your contribution to the Voxpupuli community! This PR has been inactive for an extended period. If you'd like to continue working on this change, please feel free to reopen this PR or create a new one. We're always happy to review contributions and help get them merged when they're ready. Thanks again for your interest in contributing to Voxpupuli! |
Services we're not starting on RHEL 6.8
Update …anifests\init.pp from:
to:
It now works properly.