You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
After you implemented the update checker (thanks! 🙌) it's a logical next step to
inform the user when an agent is outdated
provide a function to directly remote-update that/all agent(s)
Describe the solution you'd like
Add a logic to check for outdated agents
Show the outdated agents, maybe directly in the agent overview table and on the individual agent tab
Provide a button to directly remote-update that agent
Maybe provide a button to mass-update all outdated agents
Describe alternatives you've considered
I wrote a very simple bash script to remote-update all agents at once, maybe that explains what I'm wishing to be included in the GUI.
#!/bin/bash
outdated_agents=$(/var/ossec/bin/agent_upgrade -l|awk '/^[0-9]+/ {print $1}')
for agent in ${outdated_agents}
do
echo "Updating agent ${agent}"
/var/ossec/bin/agent_upgrade -a ${agent}
done
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
After you implemented the update checker (thanks! 🙌) it's a logical next step to
Describe the solution you'd like
Describe alternatives you've considered
I wrote a very simple bash script to remote-update all agents at once, maybe that explains what I'm wishing to be included in the GUI.
The text was updated successfully, but these errors were encountered: