public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Thomas Lamprecht <t.lamprecht@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>,
	Stefan Hanreich <s.hanreich@proxmox.com>
Cc: Wolfgang Bumiller <w.bumiller@proxmox.com>
Subject: [pve-devel] applied: [PATCH proxmox-firewall v4 1/9] add proxmox-ve-rs crate - move proxmox-ve-config there
Date: Sun, 17 Nov 2024 15:08:36 +0100	[thread overview]
Message-ID: <c5d92171-062c-4b34-a5df-016acd42d6f9@proxmox.com> (raw)
In-Reply-To: <20241115120937.169342-2-s.hanreich@proxmox.com>

Am 15.11.24 um 13:09 schrieb Stefan Hanreich:
> Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
> Reviewed-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
> ---
>  Cargo.toml                                    |   4 +-
>  Makefile                                      |   2 +-
>  proxmox-firewall/Cargo.toml                   |   2 +-
>  proxmox-nftables/Cargo.toml                   |   2 +-
>  proxmox-ve-config/Cargo.toml                  |  25 -
>  proxmox-ve-config/resources/ct_helper.json    |  52 -
>  proxmox-ve-config/resources/macros.json       | 923 -----------------
>  proxmox-ve-config/src/firewall/cluster.rs     | 374 -------
>  proxmox-ve-config/src/firewall/common.rs      | 184 ----
>  proxmox-ve-config/src/firewall/ct_helper.rs   | 115 ---
>  proxmox-ve-config/src/firewall/fw_macros.rs   |  69 --
>  proxmox-ve-config/src/firewall/guest.rs       | 237 -----
>  proxmox-ve-config/src/firewall/host.rs        | 372 -------
>  proxmox-ve-config/src/firewall/mod.rs         |  10 -
>  proxmox-ve-config/src/firewall/parse.rs       | 494 ---------
>  proxmox-ve-config/src/firewall/ports.rs       |  80 --
>  .../src/firewall/types/address.rs             | 615 -----------
>  proxmox-ve-config/src/firewall/types/alias.rs | 174 ----
>  proxmox-ve-config/src/firewall/types/group.rs |  36 -
>  proxmox-ve-config/src/firewall/types/ipset.rs | 349 -------
>  proxmox-ve-config/src/firewall/types/log.rs   | 222 ----
>  proxmox-ve-config/src/firewall/types/mod.rs   |  14 -
>  proxmox-ve-config/src/firewall/types/port.rs  | 181 ----
>  proxmox-ve-config/src/firewall/types/rule.rs  | 412 --------
>  .../src/firewall/types/rule_match.rs          | 977 ------------------
>  proxmox-ve-config/src/guest/mod.rs            | 115 ---
>  proxmox-ve-config/src/guest/types.rs          |  38 -
>  proxmox-ve-config/src/guest/vm.rs             | 510 ---------
>  proxmox-ve-config/src/host/mod.rs             |   1 -
>  proxmox-ve-config/src/host/utils.rs           |  70 --
>  proxmox-ve-config/src/lib.rs                  |   3 -
>  31 files changed, 6 insertions(+), 6656 deletions(-)
>  delete mode 100644 proxmox-ve-config/Cargo.toml
>  delete mode 100644 proxmox-ve-config/resources/ct_helper.json
>  delete mode 100644 proxmox-ve-config/resources/macros.json
>  delete mode 100644 proxmox-ve-config/src/firewall/cluster.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/common.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/ct_helper.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/fw_macros.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/guest.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/host.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/mod.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/parse.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/ports.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/address.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/alias.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/group.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/ipset.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/log.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/mod.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/port.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/rule.rs
>  delete mode 100644 proxmox-ve-config/src/firewall/types/rule_match.rs
>  delete mode 100644 proxmox-ve-config/src/guest/mod.rs
>  delete mode 100644 proxmox-ve-config/src/guest/types.rs
>  delete mode 100644 proxmox-ve-config/src/guest/vm.rs
>  delete mode 100644 proxmox-ve-config/src/host/mod.rs
>  delete mode 100644 proxmox-ve-config/src/host/utils.rs
>  delete mode 100644 proxmox-ve-config/src/lib.rs
> 
>

applied, thanks!


_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


  reply	other threads:[~2024-11-17 14:08 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-15 12:09 [pve-devel] [PATCH docs/firewall/manager/proxmox{-firewall, -perl-rs} v4 0/9] autogenerate ipsets for sdn objects Stefan Hanreich
2024-11-15 12:09 ` [pve-devel] [PATCH proxmox-firewall v4 1/9] add proxmox-ve-rs crate - move proxmox-ve-config there Stefan Hanreich
2024-11-17 14:08   ` Thomas Lamprecht [this message]
2024-11-15 12:09 ` [pve-devel] [PATCH proxmox-firewall v4 2/9] config: tests: add support for loading sdn and ipam config Stefan Hanreich
2024-11-17 14:08   ` [pve-devel] applied: " Thomas Lamprecht
2024-11-15 12:09 ` [pve-devel] [PATCH proxmox-firewall v4 3/9] ipsets: autogenerate ipsets for vnets and ipam Stefan Hanreich
2024-11-17 14:08   ` [pve-devel] applied: " Thomas Lamprecht
2024-11-15 12:09 ` [pve-devel] [PATCH pve-firewall v4 4/9] add support for loading sdn firewall configuration Stefan Hanreich
2024-11-17 14:57   ` Thomas Lamprecht
2024-11-18  9:22     ` Stefan Hanreich
2024-11-18  9:35     ` Stefan Hanreich
2024-11-15 12:09 ` [pve-devel] [PATCH pve-firewall v4 5/9] nftables: make is_nftables check flag file instead of config Stefan Hanreich
2024-11-17 14:58   ` [pve-devel] applied: " Thomas Lamprecht
2024-11-15 12:09 ` [pve-devel] [PATCH pve-firewall v4 6/9] api: load sdn ipsets Stefan Hanreich
2024-11-17 14:30   ` Thomas Lamprecht
2024-11-18  9:02     ` Stefan Hanreich
2024-11-18 11:38       ` Thomas Lamprecht
2024-11-18 13:23         ` Thomas Lamprecht
2024-11-18 13:32           ` Stefan Hanreich
2024-11-15 12:09 ` [pve-devel] [PATCH proxmox-perl-rs v4 7/9] add PVE::RS::Firewall::SDN module Stefan Hanreich
2024-11-17 14:36   ` [pve-devel] applied: " Thomas Lamprecht
2024-11-15 12:09 ` [pve-devel] [PATCH pve-manager v4 8/9] firewall: add sdn scope to IPRefSelector Stefan Hanreich
2024-11-15 12:09 ` [pve-devel] [PATCH pve-docs v4 9/9] sdn: add documentation for firewall integration Stefan Hanreich
2024-11-18 11:47 ` [pve-devel] [PATCH docs/firewall/manager/proxmox{-firewall, -perl-rs} v4 0/9] autogenerate ipsets for sdn objects Stefan Hanreich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c5d92171-062c-4b34-a5df-016acd42d6f9@proxmox.com \
    --to=t.lamprecht@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    --cc=s.hanreich@proxmox.com \
    --cc=w.bumiller@proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal