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
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' | |
IDENTIFIED BY 'password' | |
WITH GRANT OPTION; | |
FLUSH PRIVILEGES; |
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
#!/bin/sh | |
SRC_UBU_DIR=UbuServ-14.04.2-00 | |
DST_UBU_DIR=UbuServ-14.04.2-01 | |
mkdir /vmfs/volumes/datastore3/$DST_UBU_DIR | |
vmkfstools -i /vmfs/volumes/datastore3/$SRC_UBU_DIR/UbuServ-14.04.2-Base.vmdk -d thin /vmfs/volumes/datastore3/$DST_UBU_DIR/UbuServ-14.04.2-Base.vmdk | |
cp /vmfs/volumes/datastore3/$SRC_UBU_DIR/UbuServ-14.04.2-Base.nvram /vmfs/volumes/datastore3/$DST_UBU_DIR/ | |
cp /vmfs/volumes/datastore3/$SRC_UBU_DIR/UbuServ-14.04.2-Base.vmsd /vmfs/volumes/datastore3/$DST_UBU_DIR/ | |
cp /vmfs/volumes/datastore3/$SRC_UBU_DIR/UbuServ-14.04.2-Base.vmx /vmfs/volumes/datastore3/$DST_UBU_DIR/ | |
cp /vmfs/volumes/datastore3/$SRC_UBU_DIR/UbuServ-14.04.2-Base.vmxf /vmfs/volumes/datastore3/$DST_UBU_DIR/ |
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
{ | |
"name": basename.replace(/^node-/, ""), | |
"version": "0.0.1", | |
"description": prompt(), | |
"main": prompt("entry point","index.js"), | |
"scripts": { | |
"test": "./node_modules/.bin/jasmine-node test" | |
}, | |
"repository": { | |
"type": "git", |