Automation problema

Good morning to all, I have a very strange problem, I use the Aeotec USB Z-Stick Controller S5 ZW090-C - on a Nuc, I was going to use the automations to turn on and off the sockets, manually I manage without problems, with the automations in spite of me using the automation and what functions all the zwave sockets turn on but also the qnap Nas via wol:

  • id: ‘100007’
    alias: Turn on Blurey Outlet Week
    triggers:
    • at: 07:00
      platform: time
      condition:
    • condition: state
      entity_id: switch.fibaro_system_fgwpe_f_wall_plug_switch_2
      state: ‘off’
    • condition: time
      weekday:
      • mon
      • yours
      • wed
      • thu
      • fri
        action:
    • service: switch.turn_on
      I don’t know what could be or what I can check.
      I currently also added two zigbee sockets via conbee gateways, and the same thing happens with any automation I try to turn on a socket I get turned on all switch
      what can I do?

Please see point 11 and edit your post accordingly: How to help us help you - or How to ask a good question

The action is missing an entity_id. Add the name of the switch you wish to turn on.

  action:
    service: switch.turn_on
    entity_id: switch.something

solved, thanks a lot for your help