I hereby claim:
- I am mikesplain on github.
- I am mikesplain (https://keybase.io/mikesplain) on keybase.
- I have a public key ASC0WzeoqsVjXlXq48XLg94vycm_j2kDEmLpoe66KhvobAo
To claim this, I am signing this object:
| apt-get install fio -y | |
| mkdir /usr/share/agnostics/ | |
| curl https://raw.githubusercontent.com/raspberrypi-ui/agnostics/master/data/sd_bench.fio -o /usr/share/agnostics/sd_bench.fio | |
| curl https://raw.githubusercontent.com/raspberrypi-ui/agnostics/master/data/sdtest.sh -o /usr/share/agnostics/sdtest.sh | |
| chmod +x /usr/share/agnostics/sdtest.sh | |
| /usr/share/agnostics/sdtest.sh |
| #!/bin/bash | |
| installer="/Applications/Install macOS High Sierra.app" | |
| hdiutil create -o /tmp/HighSierra.cdr -size 5500m -layout SPUD -fs HFS+J | |
| hdiutil attach /tmp/HighSierra.cdr.dmg -noverify -mountpoint /Volumes/install_build | |
| sudo "$installer"/Contents/Resources/createinstallmedia --volume /Volumes/install_build | |
| mv /tmp/HighSierra.cdr.dmg ~/Downloads/InstallSystem.dmg | |
| hdiutil detach /Volumes/Install\ macOS\ High\ Sierra | |
| hdiutil convert ~/Downloads/InstallSystem.dmg -format UDTO -o ~/Downloads/HighSierra.iso |
| diff --git a/WORKSPACE b/WORKSPACE | |
| index bd08ee851..85fd003c8 100644 | |
| --- a/WORKSPACE | |
| +++ b/WORKSPACE | |
| @@ -1,10 +1,10 @@ | |
| #============================================================================= | |
| # Go rules | |
| -http_archive( | |
| +git_repository( |
| #!/bin/sh | |
| /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -allowAccessFor -specifiedUsers | |
| /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -access -on -users "admin" -privs -all -restart -agent |
I hereby claim:
To claim this, I am signing this object:
| podTemplate(label: 'mypod', containers: [ | |
| containerTemplate(name: 'docker', image: 'docker:dind', ttyEnabled: true, alwaysPullImage: true, privileged: true, | |
| command: 'dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375 --storage-driver=overlay') | |
| ], | |
| volumes: [emptyDirVolume(memory: false, mountPath: '/var/lib/docker')]) { | |
| node ('mypod') { | |
| stage 'Run a docker thing' | |
| container('docker') { | |
| stage 'Docker thing1' |
| after_success: | |
| - git config --global user.email "[email protected]" | |
| - git config --global user.name "Travis CI" | |
| - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config | |
| - ssh-add travis-openstack-clients-cookbook | |
| - echo -n $RELEASE_{00..30} >> release_base64 | |
| - base64 --decode --ignore-garbage release_base64 > release.pem |
| input { | |
| stdin { | |
| type => "stdin-type" | |
| } | |
| file { | |
| type => "syslog" | |
| path => [ "/var/log/*.log", "/var/log/*/*.log", "/var/log/messages", "/var/log/syslog" ] | |
| start_position => "beginning" | |
| } |
| ## Figure out this box's ips | |
| ips = [] | |
| node['network']['interfaces'].each do |int| | |
| int[1]['addresses'].each do | ip, params | | |
| if params['family'] == ('inet') | |
| ips << ip | |
| end | |
| end | |
| end |
| include("revisions-lib.inc"); | |
| tag_summary = "The remote server's SSL/TLS OpenSSL implementation is vulnerable for the heartbleed attack."; | |
| tag_solution = "Update to OpenSSL 1.0.1g or later."; | |
| if (description) { | |
| script_id(999999); | |
| script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C"); | |
| script_tag(name:"risk_factor", value:"Critical"); |