mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-15 06:12:59 +00:00
12 lines
278 B
Plaintext
12 lines
278 B
Plaintext
|
# svccfg
|
||
|
# Import, export, and modify service configurations (Solaris)
|
||
|
|
||
|
# Validate configuration file:
|
||
|
svccfg validate smf.xml
|
||
|
|
||
|
# Export service configurations to file:
|
||
|
svccfg export servicename > smf.xml
|
||
|
|
||
|
# Import/update service configurations from file:
|
||
|
svccfg import smf.xml
|