-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from ltamaster/master
Adding local-script to the build process
Showing
5 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
ext.pluginName = 'nixy-local-script' | ||
ext.pluginDescription = "execute a script locally" | ||
ext.pluginName = 'nixy-step-plugins' | ||
ext.pluginDescription = "executes the puppet apply command on each node matching the Job node filter" | ||
ext.sopsCopyright = "© 2018, Rundeck, Inc." | ||
ext.sopsUrl = "http://rundeck.com" | ||
ext.buildDateString=new Date().format("yyyy-MM-dd'T'HH:mm:ssX") | ||
ext.archivesBaseName ="waitfor" | ||
ext.archivesBaseName ="local-script" | ||
ext.pluginBaseFolder ="." | ||
|
||
project.version = scmVersion.version | ||
ext.archiveFilename = ext.archivesBaseName + '-v' + version | ||
project.version = 'v' + scmVersion.version | ||
ext.archiveFilename = ext.archivesBaseName + '-' + version | ||
|
||
apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/master/build.gradle' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
include 'waitfor', 'file' | ||
include 'waitfor', 'file', 'local-script' | ||
|
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