-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install permissive-script-security plugin in install-jenkins command
* src/commands/command-install-jenkins.lisp (header): updated copyright (*default-extra-plugins*): added permissive-script-security * data/jenkins-install/config/common/start_jenkins: added option -Dpermissive-script-security.enabled=true to commandline * changes.sexp (Release 0.35): added enhancement entry fixes #61
- Loading branch information
Showing
3 changed files
with
12 additions
and
3 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,6 +1,6 @@ | ||
;;;; command-install-jenkins.lisp --- Install a Jenkins instance. | ||
;;;; | ||
;;;; Copyright (C) 2017-2022 Jan Moringen | ||
;;;; Copyright (C) 2017-2023 Jan Moringen | ||
;;;; | ||
;;;; Author: Jan Moringen <[email protected]> | ||
|
||
|
@@ -29,7 +29,7 @@ | |
:test #'string=)))) | ||
|
||
(defparameter *default-extra-plugins* | ||
'("extra-columns")) | ||
'("extra-columns" "permissive-script-security")) | ||
|
||
;;; Jenkins installation profiles | ||
|
||
|