----- Task descriptor, simple ------
{
    "short_desc": "Dummy task for info/dump validations",
    "long_desc": "'task' running 'task'? blesphamy!",
    "env": {
        "{{var0}}": "{{var1}}",
        "{{var1}}": "{{var0}}"
    },
    "hidden": true,
    "abstract": true,
    "cwd": "{{optDir}}",
    "commands": [
        "a command",
        "another command",
        "yet another command"
    ]
}

----- Task descriptor, container, no inclusion ------
{
    "base": "info_task",
    "c_image": "a-wonderfull-image",
    "c_remove": false,
    "c_interactive": true,
    "c_volumes": [
        "/to-be-mapped-to-opt:{{optDir}}"
    ],
    "c_shell": true,
    "c_shell_path": "/usr/bin/acme-shell"
}

----- Task descriptor, container, with inclusion ------
{
    "short_desc": "Dummy task for info/dump validations",
    "long_desc": "'task' running 'task'? blesphamy!",
    "env": {
        "{{var0}}": "{{var1}}",
        "{{var1}}": "{{var0}}"
    },
    "cwd": "{{optDir}}",
    "commands": [
        "a command",
        "another command",
        "yet another command"
    ],
    "base": "info_task",
    "c_image": "a-wonderfull-image",
    "c_remove": false,
    "c_interactive": true,
    "c_volumes": [
        "/to-be-mapped-to-opt:{{optDir}}"
    ],
    "c_shell": true,
    "c_shell_path": "/usr/bin/acme-shell",
    "variables": {},
    "c_env": {}
}

----- Task descriptor, container, ,exec, no inclusion ------
{
    "base": "info_task_container",
    "c_image": "a-wonderfull-container",
    "c_exec": true,
    "c_interactive": true,
    "c_shell": false,
    "c_flags": "--priviliged"
}

----- Task descriptor, container, ,exec, with inclusion ------
{
    "short_desc": "Dummy task for info/dump validations",
    "long_desc": "'task' running 'task'? blesphamy!",
    "env": {
        "{{var0}}": "{{var1}}",
        "{{var1}}": "{{var0}}"
    },
    "cwd": "{{optDir}}",
    "commands": [
        "a command",
        "another command",
        "yet another command"
    ],
    "base": "info_task_container",
    "c_image": "a-wonderfull-container",
    "c_remove": false,
    "c_interactive": true,
    "c_volumes": [
        "/to-be-mapped-to-opt:{{optDir}}"
    ],
    "c_shell": false,
    "c_shell_path": "/usr/bin/acme-shell",
    "variables": {},
    "c_env": {},
    "c_exec": true,
    "c_flags": "--priviliged"
}
