-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_functions
142 lines (113 loc) · 3.46 KB
/
dot_functions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/env bash
function libvirt-static-ip() {
if [ $# -ne 3 ]
then
echo "Usage: `basename $0` NAME MAC IP"
return
fi
sudo virsh net-update default add ip-dhcp-host "<host mac='$2' name='$1' ip='$3' />" --live --config
}
function pubkey() {
if [ "$(uname)" = "Darwin" ]; then
cat ~/.ssh/id_rsa.pub | pbcopy
else
cat ~/.ssh/id_rsa.pub | xclip -selection clipboard
fi
cat ~/.ssh/id_rsa.pub
}
function b64d {
if [ $# -ne 1 ]
then
echo "Usage: `basename $0` CONTENT"
return
fi
echo $1 | base64 -d -
}
function lets_encrypt_cert {
mkdir -p $(pwd)/letsencrypt/{config,work,logs}
certbot certonly \
--config-dir $(pwd)/letsencrypt/config \
--work-dir $(pwd)/letsencrypt/work \
--logs-dir $(pwd)/letsencrypt/logs \
--agree-tos \
--dns-route53 \
--dns-route53-propagation-seconds 45 \
--server https://acme-v02.api.letsencrypt.org/directory
}
function vault_passphrase {
pwgen --capitalize --numerals --secure 200 1 | head -n1 | gpg --armor --recipient [email protected] --encrypt --output vault_passphrase.gpg
}
function vault_passphrase_decrypt {
gpg --batch --use-agent --decrypt vault_passphrase.gpg
}
function venv_selinux {
for i in $(ls /usr/lib64/python3.*/site-packages | grep selinux); do
ln -s /usr/lib64/python3.*/site-packages/${i} ${VIRTUAL_ENV}/lib64/python3.*/site-packages/
done
}
function reboot_windows {
#sudo grub2-reboot "$(sudo grep -i windows /boot/efi/EFI/fedora/grub.cfg | cut -d"'" -f2)"
sudo grub2-reboot "$(sudo grep -i windows /boot/grub2/grub.cfg | cut -d"'" -f2)"
reboot
}
function openshift_download {
if [ $# -ne 1 ]
then
echo "Usage: `basename $0` OPENSHIFT_VERSION"
return
fi
if [ "$(uname)" = "Darwin" ]
then
client_os="mac"
#if [ "$(uname -m)" = "arm64" ]
#then
# client_os="${client_os}-arm64"
#fi
else
client_os="linux"
fi
openshift_version_parts=( $(echo "${1}" | tr "." "\n") )
if [ ${#openshift_version_parts[@]} -eq 2 ]
then
wget http://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable-${1}/openshift-install-${client_os}.tar.gz
wget http://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable-${1}/openshift-client-${client_os}.tar.gz
else
wget http://mirror.openshift.com/pub/openshift-v4/clients/ocp/${1}/openshift-install-${client_os}.tar.gz
wget http://mirror.openshift.com/pub/openshift-v4/clients/ocp/${1}/openshift-client-${client_os}.tar.gz
fi
tar xvf openshift-install-${client_os}.tar.gz openshift-install
tar xvf openshift-client-${client_os}.tar.gz oc kubectl
rm -f openshift-install-${client_os}.tar.gz
rm -f openshift-client-${client_os}.tar.gz
}
function video2gif {
if [ $# -ne 4 ]
then
echo "Usage: `basename $0` INPUT FPS SCALE OUTPUT"
return
fi
ffmpeg -i $1 -vf "fps=$2,scale=$3:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 $4
}
function episodesplit {
if [ $# -ne 4 ]
then
echo "Usage: `basename $0` INPUT START END OUTPUT"
return
fi
ffmpeg -i ${1} -vcodec copy -acodec copy -ss ${2} -to ${3} ${4}
}
function dnstoys {
dig +noall +answer +additional "$1" @dns.toys
}
function redhat-aws-saml {
echo "Checking for existing Kerberos token"
klist
if [ "$?" != "0" ]
then
echo "You need a valid Kerberos token to proceed. Please renew your Kerberos token"
exit 1
fi
cd ~/projects/redhat-aws-automation
export AWS_PROFILE=saml
pipenv run ./aws-saml.py --session-duration 14400
}