-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
By ignorance and inattention, users run calculations on our gateway server *geniux*, affecting all other users. Prevent that technically, by limitting the resources to one CPU and ten percent of the memory. See systemd.resource-control(5) for more details. The current resource limits for user id 133 can be checked With `systemd-cgls` and `systemctl status user-133.slice`.
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# SPDX-License-Identifier: LGPL-2.1+ | ||
# | ||
# This file is part of systemd. | ||
# | ||
# systemd is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU Lesser General Public License as published by | ||
# the Free Software Foundation; either version 2.1 of the License, or | ||
# (at your option) any later version. | ||
|
||
[Unit] | ||
Description=User Slice of UID %j | ||
Documentation=man:user@.service(5) | ||
After=systemd-user-sessions.service | ||
StopWhenUnneeded=yes | ||
ConditionHost=geniux.molgen.mpg.de | ||
|
||
[Slice] | ||
CPUQuota=100% | ||
MemoryMax=10% |