Fleet version: 4.60.0
Web browser and operating system: Chrome 131.0.6778.86 running on macOS
💥 Actual behavior
I expected to be able to modify the script_execution_timeout agent setting according to https://fleetdm.com/docs/configuration/agent-configuration#update-agent-options-in-fleet-ui
This is an hour-old installation, running with the Docker Compose below:
services:
caddy:
container_name: caddy
image: 'caddy:alpine'
ports:
- '80:80'
- '443:443'
environment:
- ACME_AGREE=true
- CADDYPATH=/etc/caddycerts
volumes:
- './caddy/caddyfile:/etc/caddy/Caddyfile'
- './caddy/config:/config'
- './caddy/data:/data'
restart: unless-stopped
mysql:
container_name: mysql
image: 'mysql:latest'
volumes:
- './mysql/data:/var/lib/mysql'
env_file: mysql/default.env
cap_add:
- SYS_NICE
restart: unless-stopped
redis:
container_name: redis
image: 'redis:latest'
restart: unless-stopped
fleet:
container_name: fleet
image: 'fleetdm/fleet:latest'
depends_on:
- mysql
- redis
command: sh -c "/usr/bin/fleet prepare db --no-prompt && /usr/bin/fleet serve"
env_file: fleet/default.env
volumes:
- './fleet:/fleet/'
- './fleet/logs:/logs'
- './fleet/vulndb:/vulndb'
restart: unless-stopped
🧑💻 Steps to reproduce
- Navigate to
/settings/organization/agents
- Add
script_execution_timeout: 1800 just below the options key in the agent YAML options
- Click save
🕯️ More info (optional)
I did read the warning in the overview section for the agent configuration, though noted that the script_execution_timeout field in particular should work fine according to https://fleetdm.com/releases/fleet-4.54.0
My apologies if I'm missing something obvious, and many thanks in advance!
Fleet version: 4.60.0
Web browser and operating system: Chrome 131.0.6778.86 running on macOS
💥 Actual behavior
I expected to be able to modify the
script_execution_timeoutagent setting according to https://fleetdm.com/docs/configuration/agent-configuration#update-agent-options-in-fleet-uiThis is an hour-old installation, running with the Docker Compose below:
🧑💻 Steps to reproduce
/settings/organization/agentsscript_execution_timeout: 1800just below theoptionskey in the agent YAML options🕯️ More info (optional)
I did read the warning in the overview section for the agent configuration, though noted that the
script_execution_timeoutfield in particular should work fine according to https://fleetdm.com/releases/fleet-4.54.0My apologies if I'm missing something obvious, and many thanks in advance!