Embedded Installation Logic for Binary Distributions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 17: Line 17:


The article contains file samples and reference implementation examples.
The article contains file samples and reference implementation examples.
=Reference Implementation=
The reference implementation of the .install file is maintained by the [[nort]] project, as::
<blockquote style="background-color: AliceBlue; border: solid thin LightSteelBlue;">
:https://github.com/NovaOrdis/nort/blob/master/release/src/main/bash/.install<br>
</blockquote>


=TODO=
=TODO=


* Consider usefulness of providing a Java class that encapsulates the installation logic and can be instantiated by reflection.
* Consider usefulness of providing a Java class that encapsulates the installation logic and can be instantiated by reflection.

Revision as of 07:41, 2 January 2017

Internal

Overview

This pattern offers a standard installation procedure for binary distributions. It consists in shipping the binary distribution with a "./bin/.install" script that, once executed as a standard installation user, or root, renders the binary distribution into a runnable state. nort assumes the binary distributions it handles follow the pattern and attempts to run the installation logic as part of its install sequence.

Configure the Project to be Installed with nort

See:

Building a Maven Complex Release Artifact

The article contains file samples and reference implementation examples.

TODO

  • Consider usefulness of providing a Java class that encapsulates the installation logic and can be instantiated by reflection.