Skip to content

Instantly share code, notes, and snippets.

@dancrumb
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dancrumb/6d7976c4de8dbd78af2d to your computer and use it in GitHub Desktop.
Save dancrumb/6d7976c4de8dbd78af2d to your computer and use it in GitHub Desktop.
var generators = require('yeoman-generator');
var fs = require('fs');
var path = require('path');
var _ = require('lodash');
var VolumeAdderBase = module.exports = generators.Base.extend({
initializing: function() {
/* ... */
},
prompting: function () {
/* ... */
},
writing: function () {
/* ... */
}
});
var VolumeAdderBase = require('../../utils/VolumeAdderBase.js');
module.exports = VolumeAdderBase.extend({
fileType: "tomcat script",
containerName: "tomcat",
containerVolumeLocation: "/opt/tomcat/client-conf/"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment