Coder Social home page Coder Social logo

Comments (4)

keitwb avatar keitwb commented on July 20, 2024

I think in general the better approach is to have your surrounding Chef recipes invoke the service restart after setting the Python scripts in place, but it isn't clear to me how to allow the notification to go through without being skipped and still not stop the service every time you run Chef (which would be highly undesirable in general).

The only thing I can think of to accomplish that is for your own Chef recipies to have something like:

windows_service my_name do
  action :nothing
  service_name node['signalfx_agent']['service_name']
end

cookbook_file ... do
  ...
  notifies :restart, "windows_service[my_name]", :delayed
end

Where you just make a distinct resource name pointing to the same service.

You could also try invoking a restart on the plain service[#{node['signalfx_agent']['service_name']}" resource that gets used even on windows.

Let me know if either of those two things helps.

from signalfx-agent.

mitom avatar mitom commented on July 20, 2024

The first suggestion seems pretty dirty, it will result in multiple restarts of the service for each definition.

I gave the 2nd one a try, it does work although it seems like more of a bug in chef than anything else. It still refers to it as windows_service and still detects that it's defined, but it ignores the guards around it.

  cookbook_file "#{integration_directory}\\bitlocker.py" do
    source 'integrations/bitlocker.py'
    action :create
    notifies :restart, "service[#{node['signalfx_agent']['service_name']}]", :delayed
  end
[2019-04-16T13:37:52+00:00] INFO: cookbook_file[\Program Files\SignalFx\\integrations\bitlocker.py] sending restart acti
on to windows_service[signalfx-agent] (delayed)
Recipe: signalfx_agent::default
  * windows_service[signalfx-agent] action restart[2019-04-16T13:37:52+00:00] INFO: Processing windows_service[signalfx-
agent] action restart (signalfx_agent::default line 56)
[2019-04-16T13:37:54+00:00] INFO: windows_service[signalfx-agent] configured.
[2019-04-16T13:37:57+00:00] INFO: windows_service[signalfx-agent] restarted

    - restart service windows_service[signalfx-agent]
[2019-04-16T13:37:57+00:00] INFO: Chef Run complete in 15.556592 seconds

The latter technically solves the issue, although it seems like something that may be patched in the future. It's not immediately urgent to do this, but I'd be interested in a better solution where the service resource can be managed properly. A way to do this would be to separate the download & unzip actions, so the process would read more as: download package -> notify service to stop -> unzip package -> notify service to start

from signalfx-agent.

keitwb avatar keitwb commented on July 20, 2024

Yeah that is weird how it refers to windows_service...maybe service is just an alias for that on Windows or something.

Ok, yeah that makes sense about how to handle the service stop/start on initial install/upgrades. I'll look into doing that.

from signalfx-agent.

atoulme avatar atoulme commented on July 20, 2024

Closing this issue as inactive. Please reopen if this issue is still occurring.

from signalfx-agent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.