From: Dietmar Maurer Date: Wed, 22 Nov 2017 12:19:01 +0000 (+0100) Subject: re-add setup files X-Git-Url: https://git.proxmox.com/?p=pve-installer.git;a=commitdiff_plain;h=1ca496ce4522c70139fd263a48ecb3fdfa3f5eef re-add setup files They where removed by accident in one previous commit. --- diff --git a/ProxmoxInstallerSetup-pmg.pm b/ProxmoxInstallerSetup-pmg.pm new file mode 100644 index 0000000..1758307 --- /dev/null +++ b/ProxmoxInstallerSetup-pmg.pm @@ -0,0 +1,16 @@ +package ProxmoxInstallerSetup; + +use strict; +use warnings; + +sub setup { + return { + product => 'pmg', + enable_btrfs => 0, + bridged_network => 0, + }; +} + +1; + + diff --git a/ProxmoxInstallerSetup-pve.pm b/ProxmoxInstallerSetup-pve.pm new file mode 100644 index 0000000..77aaa5f --- /dev/null +++ b/ProxmoxInstallerSetup-pve.pm @@ -0,0 +1,16 @@ +package ProxmoxInstallerSetup; + +use strict; +use warnings; + +sub setup { + return { + product => 'pve', + enable_btrfs => 0, + bridged_network => 1, + }; +} + +1; + +