Browse Source

swarmlab-ls

master
test2 5 years ago
parent
commit
c017f7343c
  1. 51
      INSTALL.md
  2. 23
      README.md
  3. 1
      install/etc/profile.d/swarmlab-ls.sh
  4. 32
      install/usr/share/swarmlab.io/ls/swarmlab-ls

51
INSTALL.md

@ -0,0 +1,51 @@
# INSTALL
## create a directory structure as shown below
├── etc
│   ├── bash_completion.d
│   └── profile.d
│   └── swarmlab-ls.sh
└── usr
└── share
└── swarmlab.io
└── ls
└── swarmlab-ls
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/installDocker.md
Ready :-)

23
README.md

@ -1,2 +1,25 @@
# swarmlab-ls # swarmlab-ls
# Read LICENSE !!!
#
# 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.

1
install/etc/profile.d/swarmlab-ls.sh

@ -0,0 +1 @@
export PATH=$PATH:/usr/share/swarmlab.io/ls

32
install/usr/share/swarmlab.io/ls/swarmlab-ls

@ -0,0 +1,32 @@
#!/bin/bash
# The MIT License (MIT)
#
# 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 $(docker ps -a | grep "swarmlab-ls" | awk '{print $1}')) || true
# docker ps -a | grep "swarmlab-ls" | awk '{print $1}' | xargs docker container rm || true
docker stop swarmlab-ls || true
docker container rm swarmlab-ls || true
xhost +;docker run --privileged -it --net=host --env=\"DISPLAY\" --name=swarmlab-ls --rm ubuntu:16.04 /bin/bash
Loading…
Cancel
Save