From 86fc39902e0deba3f8e2179f2eff8c45f2ae23ae Mon Sep 17 00:00:00 2001 From: Sandon Van Ness Date: Thu, 25 Jul 2013 18:40:08 -0700 Subject: [PATCH] Add distro yamls. Should be no harm to get these in now. To run on all distros the distros dir should just be symlinked in the folder that also contains tasks, IE: suites/ceph-deploy/fs Or make a distro's folder and symlink individual distro's so you have: suites/ceph-deploy/fs/distros/centos.yaml suites/ceph-deploy/fs/distros/fedora.yaml suites/ceph-deploy/fs/distros/rhel.yaml suites/ceph-deploy/fs/distros/ubuntu.yaml etc... Signed-off-by: Sandon Van Ness --- distros/centos.yaml | 1 + distros/debian.yaml | 1 + distros/fedora.yaml | 1 + distros/opensuse.yaml | 1 + distros/rhel.yaml | 1 + distros/sles.yaml | 1 + distros/ubuntu.yaml | 1 + 7 files changed, 7 insertions(+) create mode 100644 distros/centos.yaml create mode 100644 distros/debian.yaml create mode 100644 distros/fedora.yaml create mode 100644 distros/opensuse.yaml create mode 100644 distros/rhel.yaml create mode 100644 distros/sles.yaml create mode 100644 distros/ubuntu.yaml diff --git a/distros/centos.yaml b/distros/centos.yaml new file mode 100644 index 0000000000000..8f4854b95ac89 --- /dev/null +++ b/distros/centos.yaml @@ -0,0 +1 @@ +os_type: centos diff --git a/distros/debian.yaml b/distros/debian.yaml new file mode 100644 index 0000000000000..0575658bb465a --- /dev/null +++ b/distros/debian.yaml @@ -0,0 +1 @@ +os_type: debian diff --git a/distros/fedora.yaml b/distros/fedora.yaml new file mode 100644 index 0000000000000..6b773a0cd98dc --- /dev/null +++ b/distros/fedora.yaml @@ -0,0 +1 @@ +os_type: fedora diff --git a/distros/opensuse.yaml b/distros/opensuse.yaml new file mode 100644 index 0000000000000..99dec08c5b6ff --- /dev/null +++ b/distros/opensuse.yaml @@ -0,0 +1 @@ +os_type: opensuse diff --git a/distros/rhel.yaml b/distros/rhel.yaml new file mode 100644 index 0000000000000..7f9778d770cda --- /dev/null +++ b/distros/rhel.yaml @@ -0,0 +1 @@ +os_type: rhel diff --git a/distros/sles.yaml b/distros/sles.yaml new file mode 100644 index 0000000000000..6ee4f2c09d766 --- /dev/null +++ b/distros/sles.yaml @@ -0,0 +1 @@ +os_type: sles diff --git a/distros/ubuntu.yaml b/distros/ubuntu.yaml new file mode 100644 index 0000000000000..150451be028e4 --- /dev/null +++ b/distros/ubuntu.yaml @@ -0,0 +1 @@ +os_type: ubuntu -- 2.39.5