diff options
author | Stefan Kreutz <mail@skreutz.com> | 2021-07-24 19:06:25 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2021-07-24 19:06:25 +0200 |
commit | 5de41afa5a1976f42997347f4a213e031678ec34 (patch) | |
tree | 253547f89d2ef98e280c28abd730cec05d38ef51 /README.md | |
download | openbsd-installiso-0.1.0.tar |
Add initial implementationopenbsd-installiso-0.1.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..e1d6211 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Installiso + +Installiso is a utility for OpenBSD that facilitates creating custom ISO 9660 +installation images for unattended installation. See +[this](https://www.skreutz.com/posts/first-release-of-installiso/) blog post +for an introduction, and refer to the man page for details. + +## Install + +Run `make install` as root to install the `installiso` utility and man page. + +## Release + +Create an annotated tag, and an archive as follows, replacing `0.1.0` with the +current version. + + $ git tag --annotate --message "Version 0.1.0" 0.1.0 + $ git archive --format=tar.gz --prefix=installiso-0.1.0/ \ + --output installiso-0.1.0.tar.gz 0.1.0 + |