Some minor fixes
authorpeusterm <manuel.peuster@uni-paderborn.de>
Tue, 19 Sep 2017 10:21:55 +0000 (12:21 +0200)
committerpeusterm <manuel.peuster@uni-paderborn.de>
Tue, 19 Sep 2017 10:21:55 +0000 (12:21 +0200)
Signed-off-by: peusterm <manuel.peuster@uni-paderborn.de>
Jenkinsfile
README.md

index 5e85992..aafa6a7 100644 (file)
@@ -39,14 +39,14 @@ pipeline {
          success {
                  mail(from: "jenkins@sonata-nfv.eu", 
                  to: "manuel.peuster@upb.de", 
-                 subject: "SUCCESS: ${env.JOB_NAME}/${env.BUILD_ID} building ${env.BRANCH_NAME}",
-                 body: "${env.JENKINS_URL}")
+                 subject: "SUCCESS: ${env.JOB_NAME}/${env.BUILD_ID} (${env.BRANCH_NAME})",
+                 body: "${env.JOB_URL}")
          }
          failure {
                   mail(from: "jenkins@sonata-nfv.eu", 
                  to: "manuel.peuster@upb.de", 
-                 subject: "FAILURE: ${env.JOB_NAME}/${env.BUILD_ID} building ${env.BRANCH_NAME}",
-                 body: "${env.JENKINS_URL}")
+                 subject: "FAILURE: ${env.JOB_NAME}/${env.BUILD_ID} (${env.BRANCH_NAME})",
+                 body: "${env.JOB_URL}")
          }
     }
 }
index f82a010..6c683df 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -125,7 +125,7 @@ This option requires a Docker installation on the host machine on which the emul
     * `cd ~/son-emu`
     * Build the container: `docker build -t son-emu-img .`
     * Run the (interactive) container: `docker run --name son-emu -it --rm --privileged --pid='host' -v /var/run/docker.sock:/var/run/docker.sock son-emu-img /bin/bash`
-* **Option b)** Use latest pre-build container from [DockerHub](https://hub.docker.com/r/sonatanfv/son-emu/)
+* **Option b)** Use latest pre-build container from [DockerHub](https://hub.docker.com/r/sonatanfv/son-emu/):
     * Pull the container: `docker pull sonatanfv/son-emu:dev`
     * Run the (interactive) container: `docker run --name son-emu -it --rm --privileged --pid='host' -v /var/run/docker.sock:/var/run/docker.sock sonatanfv/son-emu:dev /bin/bash`