summaryrefslogtreecommitdiffstats
path: root/install/hostdata
blob: 60b2c9b44f0c3cc562fe2111494926685c5e8799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

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: