This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git_it_bin='#!/bin/bash | |
export GIT_IT_HOME="/opt/apps/Git-it-Linux-x64" | |
$GIT_IT_HOME/Git-it > /dev/null 2>&1' | |
git_it_desktop="[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Git-it | |
Comment=Git it electron |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ "$PWD" == "$HOME" ]]; then | |
echo | |
echo "Please run this script from within a dedicated subdirectory of $HOME directory." | |
echo | |
exit 1 | |
fi | |
################ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## nextcloud - collabora online integration in a Centos 7 local virtual machine | |
## with self signed certs using certbot and a local boulder server | |
## | |
## Author: Oriol Boix Anfosso <[email protected]> orboan.com | |
## This script is licensed under GPLv2 | |
## git, certbot, docker and docker-compose must be installed! | |
## Be aware in case you already have a directory called certs in your home, not related with this project. |