-
Notifications
You must be signed in to change notification settings - Fork 0
enable command
You will learn how to enable and disable feed sources from the command line.
Enable a specific feed:
update-ipsets enable firehol_level1This creates the source enable marker for that feed. The daemon picks up the change on the next scheduler cycle or after a SIGHUP.
Add --disable to remove the enable marker:
update-ipsets enable firehol_level1 --disableThe feed stops being scheduled for download and processing. Existing committed outputs remain on disk.
Enable every known feed in the catalog:
update-ipsets enable --allDisable every known feed:
update-ipsets enable --all --disableUse this when you want a clean slate — either enable everything and selectively disable, or disable everything and selectively enable.
| Flag | Description |
|---|---|
--config <path> |
Path to the configuration catalog |
--all |
Apply to all known feeds |
--disable |
Disable instead of enable |
--silent |
Suppress output |
--verbose |
Show what changed |
Override the default config location:
update-ipsets enable --config /opt/update-ipsets/etc/config firehol_level1The enable command modifies enable markers on disk. The running daemon detects the change when:
- The next scheduler evaluation runs (controlled by the daemon
--intervalduration) - You send SIGHUP to reload configuration
- You restart the daemon
For immediate effect without restart:
update-ipsets enable firehol_level1
sudo systemctl kill -s HUP update-ipsetsOr use the admin API to enable feeds at runtime:
curl -X POST -u "$UPDATE_IPSETS_ADMIN_USER:$UPDATE_IPSETS_ADMIN_PASSWORD" http://localhost:18889/api/v1/admin/feeds/firehol_level1/enableUse --verbose to see which feeds changed state:
update-ipsets enable --all --verboseOutput shows each feed and whether its enable marker was created, removed, or already in the requested state.
- Daemon Command Reference
- Environment Variables
- Configuration Reload
- Listener Topologies
- Admin Authentication
- Feed Families
- Source Feeds
- Processor Reference
- Static Feeds
- Merge Feeds
- Artifact Parents
- History Derivatives
- Provider Databases
- Use Roles
- Critical Infrastructure Reference Feeds
- Legal Fields
- Feed Visibility & Lifecycle
- YAML Field Reference
- Pipeline Overview
- Download Lifecycle
- Processing Lifecycle
- Feed Status Reference
- Health Classes
- What Triggers Reprocessing
- Accessing the Admin
- Runtime Status
- Feed Inventory
- Artifact Inventory
- Live Queues
- Background Work
- Schedule State
- Operator Actions
- Enable & Disable