diff mbox

examples: fix authentication details in example config

Message ID 20161122015419.30497-1-andrew.donnellan@au1.ibm.com
State Accepted
Headers show

Commit Message

Andrew Donnellan Nov. 22, 2016, 1:54 a.m. UTC
Those Jenkins username and token details need to be quoted...

While we're here, add a newline at the end of the file since that annoys my
editor otherwise.

Reported-by: Russell Currey <ruscur@russell.cc>
Fixes: 31ec3a041c9d ("jenkins: support token authentication")
Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
---
 examples/openpower.toml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Andrew Donnellan Nov. 22, 2016, 2:32 a.m. UTC | #1
On 22/11/16 12:54, Andrew Donnellan wrote:
> Those Jenkins username and token details need to be quoted...
>
> While we're here, add a newline at the end of the file since that annoys my
> editor otherwise.
>
> Reported-by: Russell Currey <ruscur@russell.cc>
> Fixes: 31ec3a041c9d ("jenkins: support token authentication")
> Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>

Applied to master: ac4f81ff3f5e32eab5d944846bcbfe6cbe44ee52
diff mbox

Patch

diff --git a/examples/openpower.toml b/examples/openpower.toml
index 8446865..5c0ba40 100644
--- a/examples/openpower.toml
+++ b/examples/openpower.toml
@@ -24,8 +24,8 @@  polling_interval = 10 # polling interval in minutes
 [jenkins]
 url = "https://jenkins.ozlabs.ibm.com"
 port = 443
-username = patchwork
-token = 33333333333333333333333333333333
+username = "patchwork"
+token = "33333333333333333333333333333333"
 
 [projects]
 
@@ -58,4 +58,4 @@  token = 33333333333333333333333333333333
         remote = "GIT_REPO_TO_USE"
         branch = "GIT_REF_TO_BUILD"
         USER_EMAIL = "username"
-        DEFCONFIG_TO_USE = "ppc64le_defconfig"
\ No newline at end of file
+        DEFCONFIG_TO_USE = "ppc64le_defconfig"