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 | |
#Guacamole 0.9.0 Installation Script | |
#Versioning Variables | |
guacamoleclientdownload = "http://sourceforge.net/projects/guacamole/files/current/binary/guacamole-0.9.0.war" | |
guacamoleserverdownload = "http://sourceforge.net/projects/guacamole/files/current/source/guacamole-server-0.9.0.tar.gz" | |
guacamoleservertar = "guacamole-server-0.9.0.tar.gz" | |
guacamoleserversource = "guacamole-server-0.9.0" | |
guacamoleclientwar = "guacamole-0.9.0.war" |
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 | |
################################ | |
## Guacamole Installer Script ## | |
## Green Reed Technology 2015 ## | |
######## Martez Reed ########### | |
################################ | |
## Define variables |
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 | |
################################ | |
## Guacamole Installer Script ## | |
## Green Reed Technology 2015 ## | |
######## Martez Reed ########### | |
################################ | |
## Define variables | |
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 | |
################################ | |
## Guacamole Installer Script ## | |
## Green Reed Technology 2015 ## | |
## Martez Reed ## | |
################################ | |
## Define variables | |
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
#version=RHEL7 | |
# Action | |
install | |
cdrom | |
lang en_US.UTF-8 | |
keyboard us | |
text | |
firewall --service=ssh |
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
[Unit] | |
Description=secrets management server | |
Documentation=https://vaultproject.io/docs/ | |
After=network.target | |
ConditionFileNotEmpty=/opt/vault/config/vault-config.hcl | |
[Service] | |
User=vault | |
Group=vault | |
ExecStart=/usr/local/bin/vault server -config=/opt/vault/config/vault-config.hcl |
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 | |
wget https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz | |
sudo tar -C /usr/local -xvzf go1.13.3.linux-amd64.tar.gz | |
echo 'export PATH=$PATH:/usr/local/go/bin' > /etc/profile.d/gopath.sh | |
cat << EOF >> ~/.bash_profile | |
export GOBIN="$HOME/projects/bin" | |
export GOPATH="$HOME/projects/src" | |
EOF | |
mkdir -p ~/projects/{bin,pkg,src} | |
source /etc/profile && source ~/.bash_profile |
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
#version=RHEL8 | |
ignoredisk --only-use=sda | |
autopart --type=lvm | |
# Partition clearing information | |
clearpart --none --initlabel | |
# Use text install | |
text | |
repo --name="AppStream" --baseurl=file:///run/install/repo/AppStream | |
# Use CDROM installation media | |
cdrom |
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 | |
kubectl -n kube-system create serviceaccount tiller | |
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller | |
wget https://get.helm.sh/helm-v2.15.0-linux-amd64.tar.gz | |
tar -xzf helm-v2.15.0-linux-amd64.tar.gz | |
mv linux-amd64/helm /usr/local/bin/helm | |
helm init --service-account=tiller |
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
bolt plan run todoapp::todoapp -m /Users/martez.reed/.puppetlabs/bolt-code/modules:bolt/site-modules -i bolt/inventory | |
.yaml web=web database=database |
OlderNewer