commandsconfig unset

Unset a configuration variable. If the variable is a system variable, then it will be returned to its default value. If the variable is a user variable then it will be deleted.

Usage

config unset name

where
name of the configuration variable to unset/delete.

write on /_beyondcron/configuration

Examples

Unset a configuration variable

BeyondCron % config list beyondcron.echo.url

Type Name Value ------ ------------------- ---------------------------------- custom beyondcron.echo.url http://localhost:8080/offline/echo

BeyondCron % config unset beyondcron.echo.url
BeyondCron % config list beyondcron.echo.url

Type Name Value ------- ------------------- -------------------------- default beyondcron.echo.url http://localhost:8080/echo

Unset a user configuration variable

BeyondCron % config list Hello

Type Name Value ---- ----- ----- user Hello world

BeyondCron % config unset Hello
BeyondCron % config list Hello

See also