suresh Asked: 2011-04-30 02:20:01 +0800 CST2011-04-30 02:20:01 +0800 CST 2011-04-30 02:20:01 +0800 CST Not able to set env with character '='in SMF solaris 772 svccfg -s network/inetd setenv UMEM_DEBUG default,firewall=1 this command is not working. I need to set an environment variable to the inetd service with "=" as a character in environment variable value. solaris smf 1 Answers Voted Iain 2011-04-30T03:02:45+08:002011-04-30T03:02:45+08:00 If I read your command correctly you want to set the value of UMEM_DEBUG to default,firewall=1 You can do this interactively svccfg -s network/inetd svc:/network/inetd> setprop start/environment=astring ("UMEM_DEBUG=default,firewall=1") svc:/network/inetd> listprop start/environment start/environment astring UMEM_DEBUG=default,firewall=1 svc:/network/inetd>
If I read your command correctly you want to set the value of
UMEM_DEBUG
todefault,firewall=1
You can do this interactively