diff options
author | Dan McGee <dan@archlinux.org> | 2008-11-10 19:45:29 +0100 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-11-10 19:58:31 +0100 |
commit | 0dcc6b02d0ed7cf25e9493667030ded9525473ce (patch) | |
tree | 3361ba3a733573b8563dff47a86c1d10131f1854 /cron-jobs/adjust-permissions | |
parent | bdc50e3ecd4bd0a1e02e66f331ea7084cb61882b (diff) | |
download | dbscripts-0dcc6b02d0ed7cf25e9493667030ded9525473ce.tar.gz dbscripts-0dcc6b02d0ed7cf25e9493667030ded9525473ce.tar.xz |
cron-jobs: use renice to lower job priority
Lower the job priority of our cron jobs so they don't interfere with other
more important things on the server. None of these are very CPU intensive,
but priority for I/O operations should go elsewhere.
Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'cron-jobs/adjust-permissions')
-rwxr-xr-x | cron-jobs/adjust-permissions | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cron-jobs/adjust-permissions b/cron-jobs/adjust-permissions index 232d48a..1493f4b 100755 --- a/cron-jobs/adjust-permissions +++ b/cron-jobs/adjust-permissions @@ -6,6 +6,9 @@ fi /bin/touch /tmp/.ftpmaint.lck +#adjust the nice level to run at a lower priority +/usr/bin/renice +10 -p $$ > /dev/null + cd /home/ftp /bin/chown -R ftp:ftp-arch core/os/i686 /bin/chown -R ftp:ftp-arch core/os/x86_64 |