diff --git a/README.md b/README.md index 533a55f..cdc4b0c 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,6 @@ fi # resource_dir is the target web directory for web resources resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ mv $resource_file $resource_dir -exit 0 ``` 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. @@ -122,14 +121,13 @@ fi # resource_dir is the target web directory for web resources resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ mv $resource1_file $resource2_file $resource_dir -exit 0 ``` 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. ### Example #3 -This example is very similar to previous example. Consider the following URLs: +This example is very similar to the previous example. Consider the following URLs: ```Shell xml_location=http://md.incommon.org/InCommon/InCommon-metadata-export.xml @@ -165,7 +163,6 @@ fi # resource_dir is the target web directory for web resources resource_dir=/home/htdocs/www.incommonfederation.org/federation/metadata/ mv $resource1_file $resource2_file $resource_dir -exit 0 ``` The commands ``http_xsltproc.sh -F`` and ``http_xsltproc.sh -C`` behave exactly as described in the previous example.