diff options
author | user <user@bergwerk> | 2011-07-03 06:43:01 +0000 |
---|---|---|
committer | user <user@bergwerk> | 2011-07-03 06:43:01 +0000 |
commit | fc6549a5d73b68a380cf87b18b16fd09bc2667e8 (patch) | |
tree | 3fe0935231222503cf62b33f7d097bdca0a731a2 /mining | |
parent | 5af9be070cb8c00c61cf54372ecec3e1312c7e8f (diff) |
add mining/user/bin/cleanup_tmp
usage: combine this with cron to clean miner's .so-files from /tmp
this was required @bergwerk to prevent filling up the tmpfs what stopped
the miner...
Diffstat (limited to 'mining')
-rwxr-xr-x | mining/user/bin/cleanup_tmp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mining/user/bin/cleanup_tmp b/mining/user/bin/cleanup_tmp new file mode 100755 index 00000000..e1395b19 --- /dev/null +++ b/mining/user/bin/cleanup_tmp @@ -0,0 +1,4 @@ +#! /bin/sh +ls -lAtr /tmp/ | sed -rn ' + /\.so$/{$!{s/.* ([A-Za-z0-9]+\.so)$/rm -v \/tmp\/\1/p}} +' | sudo sh |