test2
5 years ago
3 changed files with 92 additions and 0 deletions
@ -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 :-) |
|||
|
@ -0,0 +1 @@ |
|||
export PATH=$PATH:/usr/share/swarmlab.io/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 |
Loading…
Reference in new issue