minor updates
This commit is contained in:
parent
334c190ad9
commit
844a732f58
5 changed files with 16 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@ sut
|
||||||
ctt
|
ctt
|
||||||
consul
|
consul
|
||||||
nextcloud
|
nextcloud
|
||||||
|
vault
|
||||||
|
|
11
burn-cd
Executable file
11
burn-cd
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Assuming *m4a in one directory
|
||||||
|
|
||||||
|
# Shuffle and convert
|
||||||
|
for i in *.m4a; do
|
||||||
|
o=$(echo $i | md5sum | cut -d " " -f1).wav;
|
||||||
|
ffmpeg -i "$i" "$o"
|
||||||
|
done
|
||||||
|
|
||||||
|
wodim -v -pad -dao -swab *wav
|
|
@ -10,5 +10,6 @@ while [ $# -ge 1 ]; do
|
||||||
deb https://apt.kubernetes.io/ kubernetes-xenial main
|
deb https://apt.kubernetes.io/ kubernetes-xenial main
|
||||||
EOF"
|
EOF"
|
||||||
ssh root@$host "apt-get update; apt-get install -y kubeadm kubectl; apt-mark hold kubelet kubeadm kubectl"
|
ssh root@$host "apt-get update; apt-get install -y kubeadm kubectl; apt-mark hold kubelet kubeadm kubectl"
|
||||||
|
ssh root@$host "apt-get install -y docker.io && systemctl enable docker.service"
|
||||||
|
ssh root@$host "echo net.ipv6.conf.all.forwarding=1 > /etc/sysctl.conf; sysctl -p"
|
||||||
done
|
done
|
||||||
|
|
0
monitor-office
Normal file → Executable file
0
monitor-office
Normal file → Executable file
|
@ -20,6 +20,8 @@ arrival="2018-06-01"; event="Plan raising funds"
|
||||||
arrival="2018-08-06"; event="CIL Exam (project: 2018-07-02)"
|
arrival="2018-08-06"; event="CIL Exam (project: 2018-07-02)"
|
||||||
arrival="2018-08-21"; event="FMSEC"
|
arrival="2018-08-21"; event="FMSEC"
|
||||||
arrival="2018-11-01"; event="Begin crowdfunding"
|
arrival="2018-11-01"; event="Begin crowdfunding"
|
||||||
|
arrival="2019-02-06"; event="Ende crowdfunding"
|
||||||
|
arrival="2019-08-21"; event="Master Thesis"
|
||||||
|
|
||||||
export arrival event
|
export arrival event
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue