Merge "Support pip3 and run on guest-agent service for redis"
This commit is contained in:
commit
94331620a3
@ -113,4 +113,4 @@ ULIMIT=65536
|
||||
_EOF_
|
||||
|
||||
# Install Python driver for Redis ('redis-py').
|
||||
pip2 install redis
|
||||
pip3 install redis
|
||||
|
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
# PURPOSE: Install redis required package in guest-agent-venv
|
||||
|
||||
set -ex
|
||||
|
||||
if [ $GUEST_VENV ]
|
||||
then
|
||||
# Install Python driver for Redis ('redis-py').
|
||||
$GUEST_VENV/bin/pip3 install redis
|
||||
fi
|
Loading…
Reference in New Issue
Block a user