From 1e2ab89b475fe0c07a9b24a2efe4e37eb8bc9611 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 28 Oct 2019 20:58:42 -0700 Subject: [PATCH] Ensure redis-server is started on a reboot --- net/scripts/install-redis.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/scripts/install-redis.sh b/net/scripts/install-redis.sh index 9f0ef17288..1cfb85fe80 100755 --- a/net/scripts/install-redis.sh +++ b/net/scripts/install-redis.sh @@ -6,3 +6,5 @@ set -ex add-apt-repository -y ppa:chris-lea/redis-server apt-get --assume-yes install redis + +systemctl enable redis-server.service