Mantis - py_salt
Viewing Issue Advanced Details
5273 minor always 2016-04-03 04:49 2016-04-04 09:43
clallen  
dam  
normal  
closed  
fixed  
none    
none  
0005273: Salt master service will not start
The SMF service script (/var/opt/csw/svc/method/svc-salt-master) has a bug which prevents the service from starting. On line 12, there is a test to see if the config dir exists, however it checks for a file (-f) not a directory (-d) and exits.
Here is a diff of the necessary change:

12c12
< [ ! -d ${CONF_DIR} ] && exit $CONF_DIR
---
> [ ! -f ${CONF_DIR} ] && exit $CONF_DIR
Issue History
2016-04-03 04:49 clallen New Issue
2016-04-04 09:07 dam Status new => assigned
2016-04-04 09:07 dam Assigned To => dam
2016-04-04 09:43 dam Note Added: 0011125
2016-04-04 09:43 dam Status assigned => closed
2016-04-04 09:43 dam Resolution open => fixed

Notes
(0011125)
dam   
2016-04-04 09:43   
Fixed version 0.14.0,REV=2016.04.04 pushed to unstable.
Thanks for the report!