This file contains hidden or 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
vagrant box add smartos http://cuddletech.com/tmp/smartos-latest.box | |
mkdir smartos && cd smartos | |
vagrant init smartos | |
vagrant up | |
vagrant ssh |
This file contains hidden or 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 | |
echo "This worked from Gist" >> /etc/status |
This file contains hidden or 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
#cloud-init | |
apt_update: true | |
apt_upgrade: true | |
packages: | |
- tmux |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am benr on github. | |
* I am benr (https://keybase.io/benr) on keybase. | |
* I have a public key whose fingerprint is 6065 4385 113C 32F0 8611 D18B 2E55 E37E C823 A182 | |
To claim this, I am signing this object: |
This file contains hidden or 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
EXPIRE=`curl -s https://releases.mondoo.com/rpm/pubkey.gpg | gpg --show-keys --with-colons | grep pub | awk -F: '{print $7'}` | |
NOW=`date +%s` | |
echo "Expires in $(( ($EXPIRE - $NOW) / 86400)) days" |