Update example jenking-init script to send stdout/stderr to a file.
Change-Id: I5a91858d1724da41139255f2314c2c6f691070de
Signed-off-by: Tim Johnson <tijohnson@linuxfoundation.org>
#!/bin/bash
+ exec > /var/log/jenkins-init.log 2>&1
+
gerrit_host=gerrit.example.org
ciman_root=/opt/ciman
$ciman_root/global-jjb/jenkins-init-scripts/init.sh
rm -rf $ciman_root
+
+ echo "jenkins-init: Done"
--- /dev/null
+---
+other:
+ - |
+ Update example Jenkins Init Script in README to redirect all output to a
+ log file.