From 161b2f6805b804e811a45c612d9e52a70e0d531f Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Fri, 2 Aug 2019 16:55:52 -0500 Subject: [PATCH] Set SCREENDIR permissions to 700 --- .profile | 1 + 1 file changed, 1 insertion(+) diff --git a/.profile b/.profile index 1a66146..c0e2bb0 100644 --- a/.profile +++ b/.profile @@ -23,6 +23,7 @@ fi export SCREENDIR="$HOME/.screen" if [ ! -d "$SCREENDIR" ] ; then mkdir "$SCREENDIR" + chmod 700 "$SCREENDIR" fi export GOROOT=$HOME/go export PATH=$PATH:$GOROOT/bin