Commit bbc65830 authored by Adam Lewenberg's avatar Adam Lewenberg
Browse files

version 1.1.0: use su_iptables

parent 50e662fb
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

The date string is generated with this command: `date --iso-8601=seconds`.

## [1.1.0] - 2025-06-23T13:34:28-07:00

### Changed

- Use the su_iptables Puppet module (hosted at https://code.stanford.edu/puppetpublic/su_iptables)
  instead of base::iptables.

## [1.0.0] - 2025-06-23T13:01:28-07:00

### Added
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ class su_apache (
  include su_apache::filter_syslog

  if ($manage_iptables) {
    base::iptables::rule { 'web':
    su_iptables::rule { 'web':
      description => 'Allow web accesses from anywhere',
      protocol    => 'tcp',
      port        => [ 80, 443 ],
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ class su_apache::install ()
    source => 'puppet:///modules/su_apache/etc/filter-syslog/apache',
  }

  base::iptables::rule { 'web':
  su_iptables::rule { 'web':
    description => 'Allow web access from anywhere',
    protocol    => 'tcp',
    port        => [ 80, 443 ],