services/device/devicex: use sudo+su rather than just sudo -u
When the device manager is being installed in multi-user mode
use sudo+su to switch to the device manager user rather than
sudo -u, because the latter is often set up to require a password
on common GCE and EC2 images, whereas the former does not.
This does not break any jenkins tests, and it appeared not to
break
v23 go test -v v.io/x/ref/services/device --v23.tests --deviceuser=testdm --appuser=testapp
Change-Id: I50540751292b08344dfcc93958a1d24401446fa0
diff --git a/services/device/devicex b/services/device/devicex
index 56849a5..12625d9 100755
--- a/services/device/devicex
+++ b/services/device/devicex
@@ -86,10 +86,11 @@
if [[ "${devmgr_user}" == $(whoami) ]]; then
"$@"
else
- sudo -u "${devmgr_user}" \
- V23_NAMESPACE="${V23_NAMESPACE}" \
- V23_DEVICE_DIR="${V23_DEVICE_DIR}" \
- "$@"
+ # We use sudo/su rather than just sudo -u because the latter is often
+ # set up to require a password in common GCE and EC2 images.
+ sudo V23_NAMESPACE="${V23_NAMESPACE}" V23_DEVICE_DIR="${V23_DEVICE_DIR}" \
+ su "${devmgr_user}" -s /bin/bash -c \
+ "$*"
fi
}