I hereby claim:
- I am aimeemikaelac on github.
- I am aimeemc (https://keybase.io/aimeemc) on keybase.
- I have a public key ASBlknh6LAZUoq6Oc0Cm5LOoAm34aupcQIUH8pHApr0_hwo
To claim this, I am signing this object:
| #!/bin/bash | |
| cd $HOME | |
| sudo apt update | |
| sudo apt upgrade -y | |
| sudo apt autoremove -y | |
| // .tmux.conf | |
| wget https://gist.githubusercontent.com/aimeemikaelac/191c44809e8838e231eb4337cd408834/raw/e274b66eee8ceb8bca9f3d2ac6991a8527c14c6d/.tmux.conf -O $HOME/.tmux.conf | |
| // .vimrc |
| [Unit] | |
| Description=Start TightVNC server at startup | |
| After=syslog.target network.target | |
| [Service] | |
| Type=forking | |
| User=aimee | |
| PAMName=login | |
| PIDFile=/home/aimee/.vnc/%H:%i.pid | |
| ExecStartPre=-/usr/bin/vncserver -kill :%i > /dev/null 2>&1 |
| 687 maas | |
| 689 maas --help | |
| 690 maas login aimee http://172.20.76.36:5420/MAAS | |
| 691 maas login aimee http://localhost:5420/MAAS/ | |
| 692 maas login aimee http://localhost:5240/MAAS/ | |
| 693 maas aimee boot-sources read | |
| 731 maas aimee boot-resources | |
| 732 maas aimee boot-resources create name=test title="title" filetype=iso content=@/home/aimee/Downloads/vyatta-vnf-17.2.0_amd64.iso architecture=amd64/generic | |
| 733 maas aimee boot-resources create name=custom/test title="title" filetype=iso content=@/home/aimee/Downloads/vyatta-vnf-17.2.0_amd64.iso architecture=amd64/generic | |
| 734 maas aimee boot-resources create name=custom/test title="title test" content=@/home/aimee/Downloads/vyatta-vnf-17.2.0_amd64.iso architecture=amd64/generic |
I hereby claim:
To claim this, I am signing this object:
| <IfModule mod_ssl.c> | |
| <VirtualHost *:443> | |
| SSLEngine On | |
| # Do not rely on these certificates, generate your own. | |
| SSLCertificateFile /etc/ssl/certs/172.20.76.36.cert.pem | |
| SSLCertificateKeyFile /etc/ssl/private/172.20.76.36.key.pem | |
| </VirtualHost> | |
| </IfModule> | |
| <IfModule mod_expires.c> |
| #!/bin/bash | |
| set -e | |
| SCRIPT=$(realpath $0) | |
| SCRIPTPATH=$(dirname $SCRIPT) | |
| CURRENT=$(pwd) | |
| if [ -z "$1" ]; | |
| then |
| authorityKeyIdentifier=keyid,issuer | |
| basicConstraints=CA:FALSE | |
| keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment | |
| subjectAltName = @alt_names | |
| [alt_names] | |
| IP.1 = %%DOMAIN%% |
| authorityKeyIdentifier=keyid,issuer | |
| basicConstraints=CA:FALSE | |
| keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment | |
| subjectAltName = @alt_names | |
| [alt_names] | |
| DNS.1 = %%DOMAIN%% |
| #!/bin/bash | |
| #https://stackoverflow.com/questions/7580508/getting-chrome-to-accept-self-signed-localhost-certificate/43666288#43666288 | |
| if [ -z "$1" ] | |
| then | |
| echo "Please supply a subdomain to create a certificate for"; | |
| echo "e.g. www.mysite.com" | |
| exit; | |
| fi |
| #!/bin/bash | |
| #https://stackoverflow.com/questions/7580508/getting-chrome-to-accept-self-signed-localhost-certificate/43666288#43666288 | |
| if [ -z "$1" ] | |
| then | |
| echo "Please supply a subdomain to create a certificate for"; | |
| echo "e.g. www.mysite.com" | |
| exit; | |
| fi |