Kernel::System::Console::Command::Admin::Configuration::Import

Table of Contents

NAME

Kernel::System::Console::Command::Admin::Configuration::Import

DESCRIPTION

Command to import a configuration file.

Examples:

    # All entities from the configuration file
    ./bin/otrs.Console.pl Admin::Configuration::Import configuration.json

    # Enable internal ID to find the entity record (only recommended to use on the first import)
    ./bin/otrs.Console.pl Admin::Configuration::Import --lookup-by-id configuration.json

    # Use a configuration file

    ## example.yml
    ## ---
    ## Blacklist:
    ##     Valid:
    ##         - Name: invalid
    ##     State: []
    ## Debug: 0
    ## DisableLog: 0
    ## LookupByID: 0
    ## UserID: 1

    ./bin/otrs.Console.pl Admin::Configuration::Import --config example.yml configuration.json
Scroll to Top