summaryrefslogtreecommitdiffstats
path: root/node-admin
diff options
context:
space:
mode:
authorKristian Aune <kkraune@users.noreply.github.com>2017-08-14 15:28:20 +0200
committerGitHub <noreply@github.com>2017-08-14 15:28:20 +0200
commita8a802c418bed12931f073ea968b71f0d112c599 (patch)
tree307835a8e3a18c036acb5bbf699ee6d75c6dd30d /node-admin
parentdb572644380b0f0fa4393c5bdd0bc773360b5efd (diff)
remove irrelevant user info
Diffstat (limited to 'node-admin')
-rw-r--r--node-admin/README_LINUX.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/node-admin/README_LINUX.md b/node-admin/README_LINUX.md
index 6d250d1a71c..56c1fb60a7e 100644
--- a/node-admin/README_LINUX.md
+++ b/node-admin/README_LINUX.md
@@ -36,26 +36,6 @@ Finally, start docker:
sudo systemctl start docker
```
-## Set up yahoo user
-
-The Vespa docker containers will run images that need to access the host file
-system as the user `yahoo` with UID 1000, e.g. the Node Admin runs as this
-user. If this UID is not already taken, you can create a `yahoo` user as follows:
-
-```
-sudo useradd -u 1000 -g 100 -s /dev/null yahoo
-```
-
-If the UID is already in use you should move the user to a new UID first.
-Alternatively, it might be possible to reuse that user, but this is confusing
-and may lead to errors later on (and has not been tested). In the following
-example we move the `landesk` user from UID 1000 to 1010, keeping its GID 1001.
-
-```
-sudo usermod -u 1010 landesk
-sudo find / -user 1000 -exec chown -h 1010 {} \;
-```
-
## Other