Mercurial > dive4elements > river
view artifacts/contrib/flush_cache.sh @ 6189:4365320750bb
Add helpers for links into the Flys wiki with optional SSO support.
If a SAML ticket is known for the current user, a HTML form is generated
so tha the Ticket is used to authenticate the Wiki access, otherwise a
plain Link is generated similar to what the UI used before the SSO
links.
Part of flys/issue1265
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Tue, 04 Jun 2013 17:33:55 +0200 |
parents | 5aa05a7a34b7 |
children |
line wrap: on
line source
#!/bin/bash if [ $# != 2 ]; then echo "usage $0 <artifact-server-port> <cachename>" echo " cachename is the name of the cache defined in conf/caches.xml" echo " for example: $0 12123 datacage.db" exit 1 fi curl -d @- http://localhost:$1/service/cache-invalidation << EOF <?xml version="1.0" ?> <caches> <cache name="$2"/> </caches> EOF