I have a test suite that tries to save and restore a service's configuration using svccfg export and svccfg import, but it seems to consistently lose the values of general/action_authorization and general/value_authorization.
Investigating a bit further, it appears that svccfg export doesn't include those values, even with -a. From the documentation, I don't immediately see why not. $ svcprop -p general idmap general/enabled boolean true general/entity_stability astring Unstable general/single_instance boolean true general/action_authorization astring solaris.smf.manage.idmap general/value_authorization astring solaris.smf.manage.idmap # svccfg export -a idmap [...] <property_group name='general' type='framework'> <property name='action_authorization' type='astring'/> <property name='value_authorization' type='astring'/> </property_group> [...] Any hints?