java -jar jenkins-cli.jar ... help create-group
java -jar jenkins-cli.jar create-group CONTAINER GROUP
Creates a groups
CONTAINER : root | path/to/job-or-folder | path/to/folder/view-name |
slave-name
This file contains hidden or 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
stream { | |
log_format basic '$remote_addr [$time_local] ' | |
'$protocol $status $bytes_sent $bytes_received ' | |
'$session_time'; | |
access_log /var/log/nginx/access.log basic; | |
error_log /var/log/nginx/error.log debug; | |
include /etc/nginx/stream.conf.d/*.conf; |
This file contains hidden or 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
# http://www.mutt.org/doc/manual/ | |
# decrypt passwords | |
source "gpg -d ~/.mutt/passwords.gpg |" | |
# Change the following six lines to match your Gmail account details | |
set imap_user = "[email protected]" | |
set smtp_url = "smtp://[email protected]@smtp.gmail.com:587/" | |
set smtp_authenticators = "gssapi:login" | |
set from = "[email protected]" |