diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -48,8 +48,8 @@ environment: rpm: - - dependency1 # not checked in current version - - dependency2 # only for human reference + - dependency1 # libtaskotron installs these when in production or --local mode, + - dependency2 # otherwise users are expected to install them on libtaskotron machine actions: - name: pick fluxweed on a full moon diff --git a/docs/source/taskyaml.rst b/docs/source/taskyaml.rst --- a/docs/source/taskyaml.rst +++ b/docs/source/taskyaml.rst @@ -65,20 +65,15 @@ ------------ A task may also require the presence of other code to support execution. Those -dependencies are specified as part of the environment description. +dependencies are specified as part of the environment description. Anything that +``dnf install`` supports as an argument on the command line is supported. .. code-block:: yaml environment: rpm: - - rpmlint - - libtaskotron - -.. note:: - - At this time, the list of rpm dependencies is not checked during execution - but this will change in future versions. For now, this section is ignored and - is mostly for human reference. + - python-solv + - python-librepo .. note:: diff --git a/docs/source/writingtasks.rst b/docs/source/writingtasks.rst --- a/docs/source/writingtasks.rst +++ b/docs/source/writingtasks.rst @@ -82,7 +82,7 @@ Non-Executed Task Information ----------------------------- -For this example, let's write a task that runs on bodhi ids. Looking at the +For this example, let's write a task that runs on bodhi IDs. Looking at the non-executed task data needed in :file:`mytask.yml`: .. code-block:: yaml @@ -99,7 +99,7 @@ environment: rpm: - - libtaskotron + - rpm_that_task_uses Executed Task Information