#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only

build() {
  add_file /etc/machine-id
  add_file /etc/hostname
}

help() {
  cat <<HELPEOF
This hook installs host-specific configuration files into the initramfs.
HELPEOF
}

# vim: set ft=sh ts=4 sw=4 et:
