From c9a8663ee8b5bb7e2dcda6d443c07f32e977f95a Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Wed, 15 Sep 2021 06:12:57 -0500 Subject: GN1 --- issues/genenetwork1/gn1-slowness.gmi | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 issues/genenetwork1/gn1-slowness.gmi (limited to 'issues/genenetwork1/gn1-slowness.gmi') diff --git a/issues/genenetwork1/gn1-slowness.gmi b/issues/genenetwork1/gn1-slowness.gmi new file mode 100644 index 0000000..d632f7c --- /dev/null +++ b/issues/genenetwork1/gn1-slowness.gmi @@ -0,0 +1,17 @@ +# GN1 Slowness + +GN1 needs to clean up the following + +``` +GNRoot="/gnshare/gn" +find $GNRoot/web/tmp -mmin +100 -exec rm -rfv {} \; +find $GNRoot/web/image -mmin +100 -exec rm -rfv {} \; +mkdir -p $GNRoot/web/tmp +mkdir -p $GNRoot/web/image +``` + +Note that the -delete switch is much faster than -exec, so + +``` +find $GNRoot/web/image -mmin +100 -delete +``` -- cgit v1.2.3