From ceb386d7d71ddfa11ec5b853f0a0fb5d9bd3c24f Mon Sep 17 00:00:00 2001 From: Tom Scavo Date: Mon, 31 Oct 2016 15:15:50 -0400 Subject: [PATCH] Use absolute path --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a590d33..16d62b6 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ fi # move the resource to the web directory resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ -mv $resource_file $resource_dir +/bin/mv $resource_file $resource_dir ``` Observe that the command ``http_xsltproc.sh -F`` forces a fresh SAML metadata file. If the server responds with ``304 Not Modified``, the process terminates without updating the resource file. @@ -125,7 +125,7 @@ fi # move the resources to the web directory resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ -mv $resource1_file $resource2_file $resource_dir +/bin/mv $resource1_file $resource2_file $resource_dir ``` Observe the commands ``http_xsltproc.sh -F`` and ``http_xsltproc.sh -C``. The former forces a fresh SAML metadata file as in the previous example; the latter goes directly to cache. If file is not in the cache (which is highly unlikely), the process terminates without updating any resource files. @@ -169,7 +169,7 @@ fi # move the resources to the web directory resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ -mv $resource1_file $resource2_file $resource_dir +/bin/mv $resource1_file $resource2_file $resource_dir ``` The commands ``http_xsltproc.sh -F`` and ``http_xsltproc.sh -C`` behave exactly as described in the previous example.