Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/theprez/appinstall-ibmi
- Owner: ThePrez
- License: apache-2.0
- Created: 2022-12-29T16:47:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T22:25:48.000Z (19 days ago)
- Last Synced: 2025-01-03T22:28:09.138Z (19 days ago)
- Language: Java
- Size: 20.5 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AppInstall-IBMi
Universal application installer for IBM iTo 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 componentsMultiple 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
```