Typo in README

Hi Jesse

I found a small typo in the README:
0 * * * * find /path/to/rt2/WebRT/sessiondata -type f -amin +600 -exec
rm {};

should be
0 * * * * find /path/to/rt2/WebRT/sessiondata -type f -amin +600 -exec
rm {} ;

At least, my linux bash needs the space in front of the “;”

On SuSE, I prefer to wipe (or nuke, as you say) files like this:

A more secure way to remove the session files is to use the built-in
"securely-remove-tmp-files-mechanism". In /etc/rc.config set
MAX_DAYS_IN_TMP=“30” and set TMP_DIRS_TO_CLEAR="/tmp /var/tmp
/path/to/rt2/WebRT/sessiondata".

Anyway, RT is great!!

-andreas

Sorry bout that. should be fixed in 2.0.5On Thu, Jul 26, 2001 at 04:30:52PM +0200, Andreas Kruthoff wrote:

Hi Jesse

I found a small typo in the README:
0 * * * * find /path/to/rt2/WebRT/sessiondata -type f -amin +600 -exec
rm {};

should be
0 * * * * find /path/to/rt2/WebRT/sessiondata -type f -amin +600 -exec
rm {} ;

At least, my linux bash needs the space in front of the “;”

On SuSE, I prefer to wipe (or nuke, as you say) files like this:

A more secure way to remove the session files is to use the built-in
“securely-remove-tmp-files-mechanism”. In /etc/rc.config set
MAX_DAYS_IN_TMP=“30” and set TMP_DIRS_TO_CLEAR=“/tmp /var/tmp
/path/to/rt2/WebRT/sessiondata”.

Anyway, RT is great!!

-andreas


rt-users mailing list
rt-users@lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-users

jesse reed vincent – root@eruditorum.orgjesse@fsck.com
70EBAC90: 2A07 FC22 7DB4 42C1 9D71 0108 41A3 3FB3 70EB AC90

And I’m told we do share some common rituals. Our “flame war” is apparently
held in person in their land and called “project meeting”.
-Alan Cox [on “Suits”]

Also that line does not work in Solaris 8.0 apparently because Solaris’s
Find command does not have -amin as an option. Here is what I am using
instead…

0 * * * * find /usr/local/rt/WebRT/sessiondata -type f -mtime +1 -exec rm
{} ;

The mtime is in days instead of minutes its the closest command to -amin…On Fri, 27 Jul 2001, Jesse wrote:

Sorry bout that. should be fixed in 2.0.5

On Thu, Jul 26, 2001 at 04:30:52PM +0200, Andreas Kruthoff wrote:

Hi Jesse

I found a small typo in the README:
0 * * * * find /path/to/rt2/WebRT/sessiondata -type f -amin +600 -exec
rm {};

should be
0 * * * * find /path/to/rt2/WebRT/sessiondata -type f -amin +600 -exec
rm {} ;

At least, my linux bash needs the space in front of the “;”

On SuSE, I prefer to wipe (or nuke, as you say) files like this:

A more secure way to remove the session files is to use the built-in
“securely-remove-tmp-files-mechanism”. In /etc/rc.config set
MAX_DAYS_IN_TMP=“30” and set TMP_DIRS_TO_CLEAR=“/tmp /var/tmp
/path/to/rt2/WebRT/sessiondata”.

Anyway, RT is great!!

-andreas


rt-users mailing list
rt-users@lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-users