From 23ea6bd7d38e9768fb4779f6d817c45f228be165 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Fri, 7 Feb 2020 17:14:30 -0800 Subject: [PATCH] Removing redis script --- install-redis.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 install-redis.sh diff --git a/install-redis.sh b/install-redis.sh deleted file mode 100755 index 3270ab7..0000000 --- a/install-redis.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -# Adapted from: -# https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-18-04 - -# Install Redis. -sudo apt install redis-server - -# Converting to systemd managed process -sudo echo "supervised systemd" >> /etc/redis/redis.conf - -sudo systemctl restart redis.service