Ok.
it is working now. Did the required modifications to the task and now it is working fine. Thanks for your help.
Thanks
Ok.
it is working now. Did the required modifications to the task and now it is working fine. Thanks for your help.
Thanks
You have misquoted your string. Ruby is interpreting this:
'*/30 * * * * salt '*' saltutil.sync_modules'
^
...as two separate strings with a multiplication between them:
'blah blah' * 'blah blah'
This is invalid Ruby code. You cannot multiply two strings, hence the error message.
Perhaps this is what you really meant instead:
"*/30 * * * * salt '*' saltutil.sync_modules"
^ ^
Note the use of double quotes instead of single quotes.