configuration / system / firmware

CLI REST-API

delete-fw

delete-fw [firmware-image]
The "delete-fw" command removes a firmware image from the flash of the system. Please
note that you cannot delete the currently running image and the selected image, i.e. The
firmware image that has been selected to be used when the system starts up the next time
it is rebooted or powered-on.

RESTAPI: The data can be passed in the body like this:
{
    "parameters": {
        "firmware-image": "fw_7.00.001"
    }
}
NameValueDescriptionExample
firmware-image
See also:
/configuration/system/firmware: Firmware
/configuration/system/firmware/show-fw: lists all installed and usable firmware images
/configuration/system/firmware/restore-osv: reinstall the OSV
/configuration/system/firmware/select-fw: selects a firmware image to use

REST-API Support:


This command is supported by the REST API:

Method: DELETE
URL: /api/configuration/system/firmware/delete-fw
Body:
{
    "parameters": {
        "firmware-image": [firmware-image]
    }
}

Example using curl:
curl -X DELETE /api/configuration/system/firmware/delete-fw -d 
"{
    \"parameters\": {
        \"firmware-image\": \"fw_7.00.001\"
    }
}"