5b99028acf
The code which raises an error if two elements try to install different versions of the same git repo currently works correctly for SHAs, or if a branch is specified first, followed by a SHA. However it fails if two branches are specified, because the shallow clone does not fetch all branch heads. This change correctly handles any combination of SHAs/branch-heads/tags. Change-Id: I501e94150ddeb41b79588816576a5d7a06fa92aa |
||
---|---|---|
.. | ||
bin | ||
pre-install.d | ||
README.md |
Installs 'os-svc-install', a script to perform one-line installs of init-controlled openstack services from github.
Example Usage
os-svc-install -u nova -n nova-all -c 'nova-all --someoption' -r https://github.com/openstack/nova.git
The above command will pip-install the repo specified by '-r', and create a service start script called nova-all (from -n
), which starts the command specified by -c
as user -u