summaryrefslogtreecommitdiff
path: root/manifests/os/arch.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/os/arch.pp')
-rw-r--r--manifests/os/arch.pp17
1 files changed, 0 insertions, 17 deletions
diff --git a/manifests/os/arch.pp b/manifests/os/arch.pp
deleted file mode 100644
index d9bd258..0000000
--- a/manifests/os/arch.pp
+++ /dev/null
@@ -1,17 +0,0 @@
-define nspawn::os::arch (
- String $template_name = $name,
- String $template_dir = $nspawn::template_dir,
-) {
-
- ensure_packages(['arch-install-scripts'])
-
- $root = "${template_dir}/${template_name}"
-
- file { $root:
- ensure => directory,
- } -> exec { "/usr/bin/pacstrap '${root}' base puppet":
- creates => "${root}/etc/os-release",
- } -> nspawn::util::enable_networkd { $template_name:
- template_dir => $template_dir,
- }
-}