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
### DML ### | |
# Keyspace Name | |
keyspace: stresscql | |
# The CQL for creating a keyspace (optional if it already exists) | |
keyspace_definition: | | |
CREATE KEYSPACE stresscql WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1}; | |
# Table name |
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
2015-07-20 09:34:16 ERROR POSTPROCESSER :: Exception generated in thread POSTPROCESSER: error 2 : No such file or directory | |
2015-07-20 09:34:16 DEBUG MAIN :: Building internal name cache for Downton Abbey | |
2015-07-20 09:34:16 DEBUG MAIN :: No scene exceptions update needed | |
2015-07-20 09:34:16 DEBUG POSTPROCESSER :: Is ep a priority download: True | |
2015-07-20 09:34:16 DEBUG POSTPROCESSER :: This was manually downloaded but it appears to be better quality than what we have so I'm marking it as priority | |
2015-07-20 09:34:16 DEBUG POSTPROCESSER :: Quality of the episode we're processing: 4 | |
2015-07-20 09:34:16 DEBUG POSTPROCESSER :: Snatch history had a quality in it, using that: HDTV | |
2015-07-20 09:34:16 DEBUG MAIN :: Internal name cache for 24 Heures Chrono set to: [ 24 heures chrono ] | |
2015-07-20 09:34:16 DEBUG CHECKVERSION :: Executing git rev-list --left-right "@{upstream}"...HEAD with your shell in /opt/sickrage | |
2015-07-20 09:34:16 DEBUG CHECKVERSION :: git rev-parse --verify --quiet |
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
## Install a necessary packages | |
sudo apt-get install kvm cloud-utils genisoimage | |
## URL to most recent cloud image of 14.04 | |
img_url="http://cloud-images.ubuntu.com/server/releases/14.04/release" | |
img_url="${img_url}/ubuntu-14.04-server-cloudimg-amd64-disk1.img" | |
## download the image | |
wget $img_url -O disk.img.dist | |
## Create a file with some user-data in it |