GUI CSS: Deployed view styles for layouts (CMK-1171)
[check_mk.git] / pnp-templates / .f12
blob25bf92b03a25b1b0d6b7d37dcf4ae583d0c6a5dd
1 #!/bin/bash
2 set -e
4 SITE=${SITE:-$(cat ../.site 2>/dev/null || true)}
5 SITE=${SITE:-$(omd sites --bare | head -n 1)}
6 ROOT=/omd/sites/$SITE
8 sudo rsync --delete -varx ./ $ROOT/share/check_mk/pnp-templates/
10 if [ -z $ONLY_COPY ]; then
11 # do nc to port 32000 only if there is someone listening
12 # (otherwise complete f12 script breaks if no listener on 32000)
13 if [ $(nmap -PN -p 32000 localhost | egrep "32000.*open" | wc -l) -gt 0 ]
14 then
15 echo 'location.reload();' | nc -w 0 localhost 32000