Execute on startup

OliveTin can execute actions on a startup.

actions:
  - title: Say hello
    shell: echo "Hello!"
    execOnStartup: true

Example: Install additional commands into OliveTin

This functionality to execute actions on startup is a very easy way to install additional commands in OliveTin;

actions:
  - title: Install dnsmasq
    shell: microdnf install bind-utils
    execOnStartup: true

To learn more about how to install additional packages into the container, see installing extra container packages.