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
--- | |
- name: Install Veritas Backup | |
hosts: all | |
vars: | |
secret: ## <Insert a Vault Password =) > | |
tasks: | |
- name: install dependencies | |
apt: |
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
## Author Guilherme Calcette 16/06/2018 - [email protected] | |
## Original Themes "Arrow" And "AlanPeanBody" Thanks Bro.. | |
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="white"; fi | |
local user='Gcalcette MacBook Pro :: ➤ %{$reset_color%}' | |
local pwd='%{$fg[yellow]%}%~%{$reset_color%}' | |
PROMPT="${user} ${pwd}$ " | |
RPROMPT='%{$fg[$NCOLOR]%}%p $(git_prompt_info)%{$reset_color%}' |
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
/welcome *Olá $name !, Seja muito bem vindo(a) ao grupo LinuxTips!!!* | |
Conte um pouco sobre você : | |
# De qual cidade/UF você é:question: | |
# Onde você trabalha:question: | |
# O que você faz:question: | |
Espalhe a palavra é simples como voar: | |
:+1: https://www.linuxtips.com.br/ |
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 | |
# mongo-backup.sh | |
# Script to automate MongoDB Backups | |
# | |
# Requirements: | |
# mongodump | |
# s3cmd | |
# | |
# Author: |