4851 Commits

Author SHA1 Message Date
kirby
26cdaaf78a update to apcupsd-3.14.14 2016-06-03 08:11:09 +00:00
ajacoutot
71f79a2f80 Update to awscli-1.10.35. 2016-06-03 07:23:32 +00:00
jasper
af85791183 merged upstream 2016-06-02 20:15:59 +00:00
jasper
bfb6807b1d recognize wxallowed mount option 2016-06-02 09:52:37 +00:00
jasper
8dad2fd86f update to facter-3.1.8 2016-06-02 07:36:19 +00:00
ajacoutot
b6542232ad Update to google-cloud-sdk-112.0.0. 2016-06-02 07:19:21 +00:00
jasper
54b64d4d88 update to puppet-4.5.1 2016-06-02 07:01:12 +00:00
sthen
6f84295e17 post-extract -> pre-patch, to fix "make extract NO_DEPENDS=Yes" 2016-06-01 22:36:30 +00:00
sthen
3d1c7f03d4 +flashrom 2016-06-01 16:42:53 +00:00
sthen
90755afd6a import ports/sysutils/flashrom, ok krw
flashrom is a utility for identifying, reading, writing, verifying
and erasing flash chips. It is designed to flash BIOS, EFI, coreboot,
firmware and optionROM images on mainboards, network/graphics/storage
controller cards, and various programmer devices.
2016-06-01 16:42:23 +00:00
jasper
22cdb80ab9 rgen is not required by puppet 3 unless the future parser is used 2016-06-01 12:02:44 +00:00
jasper
8f0b87c481 update to mcollective-puppet-agent-1.11.0 2016-06-01 11:58:54 +00:00
jasper
85d2554093 sync URL 2016-06-01 11:56:23 +00:00
ajacoutot
d3876db257 Update to remotebox-2.1. 2016-06-01 10:17:44 +00:00
jasper
90773078e4 hookup puppet 4. it appears to be working well for agents and webrick masters.
ok aja@
2016-06-01 09:11:24 +00:00
jasper
a4c014cf61 group SUBST_CMD invocations; spotted by aja@ 2016-06-01 09:10:23 +00:00
jasper
a928c314da merged upstream 2016-06-01 07:02:02 +00:00
jasper
a71d778b73 add comment to self regarding facter.jar. it'll be needed when/if puppetserver
finally works on openbsd, however for the past two years it's not gone anywhere
2016-05-31 18:40:06 +00:00
jasper
bdc6911a16 unbreak swap fact; sorry, you don't have exabytes of swap. 2016-05-31 14:09:55 +00:00
jasper
975d0ee8b0 add ruby-hiera-eyaml and upcoming puppetdb4 ports to the list 2016-05-31 10:27:38 +00:00
ajacoutot
8cae8923dc Update to aws-shell-0.1.1. 2016-05-31 06:07:15 +00:00
jturner
e12a5756fb Update tarsnap-gui to 0.9. From MAINTAINER and ok sthen@. 2016-05-30 21:31:16 +00:00
jasper
e9be077ead submitted upstream 2016-05-30 17:01:44 +00:00
jasper
e56648b599 oh cvs, you bundle of joy... 2016-05-30 15:10:00 +00:00
jasper
dc4d15b843 be gone 2016-05-30 15:09:09 +00:00
jasper
7d7e4e16f6 long overdue update to facter-3.1.7; all our patches have been merged upstream
however some new patches are needed to deal with the split-off leatherman lib.
2016-05-30 15:07:58 +00:00
jasper
7292c783da merge two commits from upstream which effectively unbreak the 'fqdn' fact.
now it returns the proper fqdn instead insteadf of 'localhost'
2016-05-30 12:34:25 +00:00
jasper
a90daafb02 @sample default modules/manifests directory for the production environment 2016-05-30 11:37:16 +00:00
jasper
dfb48775d4 update to puppet-4.5.0 2016-05-30 11:18:22 +00:00
ajacoutot
1d7327a751 Update to awscli-1.10.34. 2016-05-29 09:16:58 +00:00
jsg
36a4eefc69 +dtb
+u-boot
2016-05-29 02:42:19 +00:00
jsg
5c85a0fb77 Add a port to build Device Tree Blobs (DTBs) for various
ARM/MIPS/PowerPC boards.  DTBs are binary representations of Flattened
Device Trees (FDTs) that describe hardware properties such as memory
ranges, interrupts and processors.

DTB files are used by U-Boot and other firmware interfaces to provide
this information to the kernel.

Feedback from jca@ and sthen@.  ok sthen@
2016-05-29 02:07:26 +00:00
jsg
f54eccba3b Import U-Boot 2016.05
U-Boot is a firmware for embedded boards based on PowerPC, ARM, MIPS and
several other processors, which can be installed in a boot ROM and used to
initialize and test the hardware or to download and run application code.

As ARM systems often do not come with firmware it must be supplied on
an SD card or MMC device to have a bootable system.

This port provides U-Boot for various boards using ARM processors.

armv7 requires the support for EFI payloads added in this release to run
the bootloader.  A proposed patch to prevent the EFI interface from
allocating pages from unpopulated memory by Alexander Graf is included
which will hopefully be part of future releases:
http://marc.info/?l=u-boot&m=146434472023891&w=2

Feedback from jca@ and sthen@.  ok sthen@ on an earlier version without
the EFI patch.
2016-05-29 01:35:33 +00:00
sthen
8fcaf63dbf update to freeipmi-1.5.2 2016-05-28 14:26:46 +00:00
sthen
ba926603b2 update to moreutils-0.59 2016-05-28 13:47:14 +00:00
sebastia
d0c77fa458 Make trusted facts work with the webrick server as well as make them
available when using ruby unicorn behind apache or nginx.

Using unicorn behind apache you need to add header:

RequestHeader set X-SSL-Client-Cert %{SSL_CLIENT_CERT}e

Using unicorn behind nginx, you need to run nginx-lua flavor, then
you need:

   location / {

     set_by_lua $client_cert "return ngx.var.ssl_client_raw_cert:gsub('\\n',' ')";

     proxy_set_header      X-SSL-Client-Cert $client_cert;

   }

OK jasper@ (MAINTAINER)
2016-05-27 19:10:39 +00:00
rpe
0d9bc384c5 Update sysutils/ansible to 2.1.0.0
For changes see:
https://github.com/ansible/ansible/blob/v2.1.0.0-1/CHANGELOG.md

OK aja, jasper, landry
2016-05-27 13:54:49 +00:00
jasper
e54f9f6189 update to filebeat-1.2.3; various fixes for ignore_older 2016-05-27 12:58:43 +00:00
jasper
78baf9407e update to topbeat-1.2.3; no relevant changes 2016-05-27 12:58:15 +00:00
jasper
43254a18c3 update to packetbeat-1.2.3; no changes 2016-05-27 12:57:53 +00:00
jasper
7bef39ee0a update to monit-5.18
from bryce chidester
2016-05-27 10:06:47 +00:00
ajacoutot
049611ef33 Update to salt-2016.3.0. 2016-05-26 12:22:40 +00:00
ajacoutot
fb18a42b57 Update to google-cloud-sdk-111.0.0. 2016-05-26 12:05:25 +00:00
kirby
c08367e9be unbreak build after USB_GET_STRING_DESC removal.
spotted by naddy@, thanks!
2016-05-26 08:34:17 +00:00
danj
c3a7c9e746 update to duplicity-0.7.07.1
Take maintainer

ok shadchin@
2016-05-25 17:41:36 +00:00
ajacoutot
3a57562cbe Update to packer-0.10.1. 2016-05-25 13:20:09 +00:00
ajacoutot
96710d12c6 Update to awscli-1.10.32. 2016-05-21 06:54:56 +00:00
czarkoff
23e55bcd67 use more of go.port.mk facilities
no chnages in package contents

implied OK ajacoutot@
2016-05-21 01:47:42 +00:00
jca
b8bbe6a02a Unbreak on big endian archs where __builtin_bswap32 isn't available
Problem on sparc64 reported + fix tested by matthieu@
ok Michael Reed (maintainer)
2016-05-19 20:30:16 +00:00
ajacoutot
feee639fda Update to google-cloud-sdk-110.0.0. 2016-05-19 05:42:24 +00:00