/ to search
? for regex search
dd to delete line
y+Move to yank
???? you can yank into seperate buffers
| $ApiUser = | |
| $ApiToken = | |
| $BuildTriggerToken = | |
| #dirty hack to add trust for a cert to WinPE | |
| & reg.exe IMPORT Z:\Control\Tools\JenkinsSelfSigned.reg | |
| #create the required header | |
| $bytes = [System.Text.Encoding]::ASCII.GetBytes("${ApiUser}:${ApiToken}") | |
| $base64 = [System.Convert]::ToBase64String($bytes) |
| #!groovy | |
| pipeline { | |
| agent any | |
| //These params will be displayed for user input when running a build, They are also accepted by the API | |
| parameters { | |
| string(name: 'BUILD_HOSTNAME', description: 'The name of the server to build (from Mdb)') | |
| string(name: 'ILO_IP', description: 'The IP address for the server ilo') | |
| booleanParam(name: 'skipOneView', description: 'Skip the OneView stage?', defaultValue: false) |
/ to search
? for regex search
dd to delete line
y+Move to yank
???? you can yank into seperate buffers