23756654 Missing '-l' option when using pargs command in Neutron
authorVardhnee Ramanujam Ravi <vardhnee.ramanujam.ravi@oracle.com>
Tue, 12 Jul 2016 17:56:18 -0700
changeset 6402 498ec92d1f73
parent 6401 8e624b116c1d
child 6403 9d25dbe7eb71
23756654 Missing '-l' option when using pargs command in Neutron
components/openstack/neutron/patches/01-dhcp-agent-add-solaris.patch
components/openstack/neutron/patches/02-l3-agent-add-solaris.patch
--- a/components/openstack/neutron/patches/01-dhcp-agent-add-solaris.patch	Tue Jul 12 17:34:11 2016 -0700
+++ b/components/openstack/neutron/patches/01-dhcp-agent-add-solaris.patch	Tue Jul 12 17:56:18 2016 -0700
@@ -37,7 +37,7 @@
              return False
  
 +        if platform.system() == "SunOS":
-+            cmd = ['/usr/bin/pargs', pid]
++            cmd = ['/usr/bin/pargs', '-l', pid]
 +            try:
 +                exec_out = utils.execute(cmd)
 +            except RuntimeError:
--- a/components/openstack/neutron/patches/02-l3-agent-add-solaris.patch	Tue Jul 12 17:34:11 2016 -0700
+++ b/components/openstack/neutron/patches/02-l3-agent-add-solaris.patch	Tue Jul 12 17:56:18 2016 -0700
@@ -23,7 +23,7 @@
              return False
  
 +        if platform.system() == "SunOS":
-+            cmd = ['/usr/bin/pargs', pid]
++            cmd = ['/usr/bin/pargs', '-l', pid]
 +            try:
 +                exec_out = utils.execute(cmd)
 +            except RuntimeError: