dpl 1.9.2.travis.2724.5 → 1.9.2.travis.2725.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/lib/dpl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7fed5011186e0ff3c855b738d81035a8f309f2abc94575fee9c0b37080d07b5e
|
|
4
|
+
data.tar.gz: af1917edc16d4b521047e84fbce83cef3213d40b028507b2565ec703142bf821
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfc4185a8465882f171b126fe7a12ca2da2dcf09f4a50718b49bf9309cf6e12df165dc8ef11b45a5addff555cf1da47bcb12a8b24d36a0bbe85b1075e00f4a41
|
|
7
|
+
data.tar.gz: 64fadadd4d49ab1addfd3de87406fca61f8eb0f73c31a0ab24548f08d8e28b1a0918252b026d29bf74f0b4e3a00e0139a3333ccc15e05dfcacc4598657e0077b
|
data/README.md
CHANGED
|
@@ -925,3 +925,14 @@ In order to use this provider, please make sure you have the [App Engine Admin A
|
|
|
925
925
|
#### Examples:
|
|
926
926
|
|
|
927
927
|
dpl --provider=bluemixcloudfoundry --username=<username> --password=<password> --organization=<organization> --region=<region> --space=<space> --skip-ssl-validation
|
|
928
|
+
|
|
929
|
+
## `dpl` and `sudo`
|
|
930
|
+
|
|
931
|
+
`dpl` installs deployment provider code as the user invoking
|
|
932
|
+
`dpl` at run time, if it is not available.
|
|
933
|
+
This causes [a problem](https://github.com/travis-ci/dpl/issues/769)
|
|
934
|
+
if you invoke `dpl` via `dpl`, where the process instaling the
|
|
935
|
+
provider code may not have sufficient permissions.
|
|
936
|
+
|
|
937
|
+
In this case, you can install the provider gem (of the same version as
|
|
938
|
+
`dpl`) with `sudo` beforehand to work around this issue.
|
data/lib/dpl/version.rb
CHANGED