diff options
author | Matt Wrock <matt@mattwrock.com> | 2016-01-19 11:26:08 -0800 |
---|---|---|
committer | Matt Wrock <matt@mattwrock.com> | 2016-01-19 11:51:55 -0800 |
commit | eacdbae976c05cccb6550d04f664034b9e66448f (patch) | |
tree | 89978620ad1860647175603f246b9a081c271807 /omnibus | |
parent | 600f83f177370adbd916666190989054d6fae1f0 (diff) | |
download | chef-eacdbae976c05cccb6550d04f664034b9e66448f.tar.gz |
explicitly adding .bat to service executable called by service in case users remove .bat from PATHEXT
Diffstat (limited to 'omnibus')
-rw-r--r-- | omnibus/resources/chef/msi/source.wxs.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omnibus/resources/chef/msi/source.wxs.erb b/omnibus/resources/chef/msi/source.wxs.erb index f9c2b55cde..79f90ac18b 100644 --- a/omnibus/resources/chef/msi/source.wxs.erb +++ b/omnibus/resources/chef/msi/source.wxs.erb @@ -96,7 +96,7 @@ <File Id="RubyExecutable" Source="$(var.ProjectSourceDir)\embedded\bin\ruby.exe" KeyPath="yes" /> <ServiceInstall Name="chef-client" Type="ownProcess" Start="auto" Vital="yes" ErrorControl="ignore" - Arguments="[PROJECTLOCATION]\bin\chef-windows-service" + Arguments="[PROJECTLOCATION]bin\chef-windows-service" DisplayName="!(loc.ServiceDisplayName)" Description="!(loc.ServiceDescription)"> <ServiceDependency Id="Winmgmt" /> |