From 6cf413ce563fceff7ccf7da07d0d1ea0e6998a4a Mon Sep 17 00:00:00 2001 From: D-Line Date: Sun, 17 Sep 2017 15:34:56 -0700 Subject: [PATCH 1/2] Update VPS.md --- docs/VPS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/VPS.md b/docs/VPS.md index 670aca2a8..9b29c3606 100644 --- a/docs/VPS.md +++ b/docs/VPS.md @@ -44,7 +44,7 @@ Create your stringer user We will run stringer as it's own user for security, also we will be installing a specific version of ruby to stringer user's home directory, this saves us worrying whether the version of ruby and some dependencies provided by your distro are compatible with Stringer. - useradd stringer -m -s /bin/bash + sudo useradd stringer -m -s /bin/bash su -l stringer Always use -l switch when you switch user to your stringer user, without it your modified .bash_profile or .profile file will be ignored. From 77e64538662d0b98d85f2a71b6338edb81739941 Mon Sep 17 00:00:00 2001 From: D-Line Date: Mon, 18 Sep 2017 11:26:40 -0700 Subject: [PATCH 2/2] Update VPS.md --- docs/VPS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/VPS.md b/docs/VPS.md index 9b29c3606..39f788495 100644 --- a/docs/VPS.md +++ b/docs/VPS.md @@ -45,7 +45,7 @@ Create your stringer user We will run stringer as it's own user for security, also we will be installing a specific version of ruby to stringer user's home directory, this saves us worrying whether the version of ruby and some dependencies provided by your distro are compatible with Stringer. sudo useradd stringer -m -s /bin/bash - su -l stringer + sudo su -l stringer Always use -l switch when you switch user to your stringer user, without it your modified .bash_profile or .profile file will be ignored.