From 0e76809f391fb9ee4620fe3a6f8840309c0123e7 Mon Sep 17 00:00:00 2001 From: test2 Date: Mon, 14 Oct 2019 23:44:58 +0300 Subject: [PATCH] swarmlab-adoc --- INSTALL.md | 53 +++++++++++++++++++ install/etc/profile.d/swarmlab-adoc.sh | 1 + .../usr/share/swarmlab.io/adoc/swarmlab-adoc | 38 +++++++++++++ 3 files changed, 92 insertions(+) create mode 100644 INSTALL.md create mode 100755 install/etc/profile.d/swarmlab-adoc.sh create mode 100755 install/usr/share/swarmlab.io/adoc/swarmlab-adoc diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000..9f705cb --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,53 @@ +# INSTALL + +## create a directory structure as shown below + +``` +/ +├── etc +│   ├── bash_completion.d +│   └── profile.d +│   └── swarmlab-adoc.sh +└── usr + └── share + └── swarmlab.io + └── adoc + └── swarmlab-adoc +``` + +chmod +x all files in /usr/share/swarmlab.io + + + +## Add the following lines to the end of .bashrc file + +``` +if [ -d /etc/profile.d ]; then + for i in /etc/profile.d/*.sh; do + if [ -r $i ]; then + . $i + fi + done + unset i +fi + + +# enable programmable completion features (you don't need to enable +# this, if it's already enabled in /etc/bash.bashrc and /etc/profile +# sources /etc/bash.bashrc). +if ! shopt -oq posix; then + if [ -f /usr/share/bash-completion/bash_completion ]; then + . /usr/share/bash-completion/bash_completion + elif [ -f /etc/bash_completion ]; then + . /etc/bash_completion + fi +fi +``` + +# Install Docker and Compose + +See http://docs.vlabs.uniwa.gr/Howtos/docker/install.adoc.html + + +Ready :-) + diff --git a/install/etc/profile.d/swarmlab-adoc.sh b/install/etc/profile.d/swarmlab-adoc.sh new file mode 100755 index 0000000..7757204 --- /dev/null +++ b/install/etc/profile.d/swarmlab-adoc.sh @@ -0,0 +1 @@ +export PATH=$PATH:/usr/share/swarmlab.io/adoc diff --git a/install/usr/share/swarmlab.io/adoc/swarmlab-adoc b/install/usr/share/swarmlab.io/adoc/swarmlab-adoc new file mode 100755 index 0000000..33c41ff --- /dev/null +++ b/install/usr/share/swarmlab.io/adoc/swarmlab-adoc @@ -0,0 +1,38 @@ +#!/bin/bash + +# +# rootApostolos@swarmlab.io +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + +set -e + +docker stop swarmlab-adoc || true +docker container rm swarmlab-adoc || true +PWD=$(pwd) +for file in $(find . -name '*.adoc'); +do + echo "Create html5 from $file" + docker run --name=swarmlab-adoc --rm -v $PWD:/documents/ registry.vlabs.uniwa.gr:5080/swarmlab-asciidoctor asciidoctor --safe -b html5 -a theme=flask -a toc2 -a toc-placement=right -o $file.html $file + echo "Created $file.html" + echo "Create pdf from $file" + docker run --name=swarmlab-adoc --rm -v $PWD:/documents/ registry.vlabs.uniwa.gr:5080/swarmlab-asciidoctor asciidoctor-pdf --safe -a toc -o $file.pdf $file + echo "Created $file.pdf" +done