]> mj.ucw.cz Git - moe.git/commitdiff
More...
authorMartin Mares <mj@ucw.cz>
Wed, 20 Mar 2002 12:19:55 +0000 (12:19 +0000)
committerMartin Mares <mj@ucw.cz>
Wed, 20 Mar 2002 12:19:55 +0000 (12:19 +0000)
README

diff --git a/README b/README
index edf41566e7473e7e90ef4723eca3c50bcd06c11c..0320c50fae9b6090535d77cff5addba4d72a7f7e 100644 (file)
--- a/README
+++ b/README
@@ -34,3 +34,14 @@ Run bin/mo-install to create the infrastructure.
 
 Run bin/mo-create-contestants to create contestants' home directories,
 files from template/* will be copied there automatically.
+
+If users are logging in remotely, set quotas and other limits for them.
+Don't use limits.conf for that since with sshd the limits would affect _root_
+(probably bug in interface between sshd and PAM). Just add to /etc/profile:
+
+       if [ $UID -ge 65100 -a $UID -le 65199 ] ; then
+               ulimit -Sc 8192         # core file size
+               ulimit -SHu 32          # processes
+               ulimit -SHn 256         # max open files
+               ulimit -SHv 262144      # max virtual memory
+       fi