Embedded Installation Logic for Binary Distributions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 2: Line 2:


* [[Projects#Patterns|Projects]]
* [[Projects#Patterns|Projects]]
* [[Nort_Concepts#The_Install_Sequence|nort Concepts - The Install Sequence]]


=Overview=
=Overview=

Revision as of 16:03, 20 December 2016

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.

Reference Implementation

The reference implementation of the .install file is maintained by the nort project, as::

https://github.com/NovaOrdis/nort/blob/master/release/src/main/bash/.install

TODO

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