https://github.com/intecture/installer
Installer for Intecture components
https://github.com/intecture/installer
Last synced: about 1 year ago
JSON representation
Installer for Intecture components
- Host: GitHub
- URL: https://github.com/intecture/installer
- Owner: intecture
- License: mpl-2.0
- Created: 2016-08-24T15:52:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-01T16:47:05.000Z (over 9 years ago)
- Last Synced: 2025-05-22T08:11:28.294Z (about 1 year ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# installer
Installer script for Intecture components that powers https://get.intecture.io.
```
Usage: get.sh [-u -y] [-d ] (agent | api | auth | cli)
Flags:
-d Specify the path to use as a work directory
-u Uninstall component instead of installing it
-y Answer "yes" to prompts
```
For example, to install the API without prompts, you would run:
```
$ curl -sSf https://get.intecture.io/ | sh -s -- -y api
```
To uninstall it, just pass the `-u` flag:
```
$ curl -sSf https://get.intecture.io/ | sh -s -- -u api
```
If you want to cache an Intecture package locally, you must specify a work directory to use, which will not be cleaned up after installation:
```
$ curl -sSf https://get.intecture.io/ | sh -s -- -d /var/cache/incli cli
```