#!/bin/bash

if [ "${1:0:1}" = '-' ]; then
  export CLI_OPTIONS_STRING=$(printf "%s|" "$@")
  set --
fi
exec /init "$@"
