]> git.proxmox.com Git - pve-installer.git/commitdiff
re-add setup files
authorDietmar Maurer <dietmar@proxmox.com>
Wed, 22 Nov 2017 12:19:01 +0000 (13:19 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Wed, 22 Nov 2017 12:19:01 +0000 (13:19 +0100)
They where removed by accident in one previous commit.

ProxmoxInstallerSetup-pmg.pm [new file with mode: 0644]
ProxmoxInstallerSetup-pve.pm [new file with mode: 0644]

diff --git a/ProxmoxInstallerSetup-pmg.pm b/ProxmoxInstallerSetup-pmg.pm
new file mode 100644 (file)
index 0000000..1758307
--- /dev/null
@@ -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 (file)
index 0000000..77aaa5f
--- /dev/null
@@ -0,0 +1,16 @@
+package ProxmoxInstallerSetup;
+
+use strict;
+use warnings;
+
+sub setup {
+    return {
+       product => 'pve',
+       enable_btrfs => 0,
+       bridged_network => 1,
+    };
+}
+
+1;
+
+