Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/theprez/appinstall-ibmi

Universal application installer for IBM i
https://github.com/theprez/appinstall-ibmi

Last synced: 1 day ago
JSON representation

Universal application installer for IBM i

Awesome Lists containing this project

README

        

# AppInstall-IBMi
Universal application installer for IBM i

To build an application installation image:
```fortran
Usage: java -jar appinstall-ibmi-xxx.jar -o [options] [[component]...]

is the file name of the build package you are creating
(.jar file extension is preferred)

Valid options include:
-v : verbose mode
--version : print version information
-h/--help : print this help
--lodrun : save QINSTAPP program from to be used by LODRUN, below
--spec : a specification file listing application components

Multiple components can be specified. These identify components
of the application for which you are creating an installer.
Valid component values include:
--qsys : a library in the QSYS.LIB file system
--dir : a directory (contents are not included)
--file : a file or directory (if a directory, contents are included)
--pre : a pre-install script (only one can be specified)
--post : a post-install script (only one can be specified)
--spec : a specification file listing application components
```

The resulting file is a runnable `.jar` file that will install the application!
```fortran
Usage: java -jar [option]
Valid options include:
-v : verbose mode
-y : automatically reply 'Y' to all confirmation (install/delete) messages
-c : automatically reply 'Y' to all non-destructive (install) confirmation messages
-l/--lodrun : do LODRUN instead of directly restoring (if specified, the following --rstxxx options are ignored)
--rstlib : override restore library
--rstasp : override restore asp
--rstaspdev : override restore asp device
```