瀏覽代碼

Add openshift_clock role to manage system clocks

Jeremiah Stuever 9 年之前
父節點
當前提交
8341cd6bed
共有 2 個文件被更改,包括 29 次插入0 次删除
  1. 15 0
      roles/openshift_clock/meta/main.yml
  2. 14 0
      roles/openshift_clock/tasks/main.yaml

+ 15 - 0
roles/openshift_clock/meta/main.yml

@@ -0,0 +1,15 @@
+---
+galaxy_info:
+  author: Jeremiah Stuever
+  description: OpenShift Clock
+  company: Red Hat, Inc.
+  license: Apache License, Version 2.0
+  min_ansible_version: 1.9
+  platforms:
+  - name: EL
+    versions:
+    - 7
+  categories:
+  - cloud
+dependencies:
+- { role: openshift_facts }

+ 14 - 0
roles/openshift_clock/tasks/main.yaml

@@ -0,0 +1,14 @@
+---
+- name: Set clock facts
+  openshift_facts:
+    role: clock
+    local_facts:
+      enabled: "{{ openshift_clock_enabled | default(None) }}"
+
+- name: Install ntp package
+  action: "{{ ansible_pkg_mgr }} name=ntp state=present"
+  when: openshift.clock.enabled | bool and not openshift.clock.chrony_installed | bool
+
+- name: Start and enable ntpd/chronyd
+  shell: timedatectl set-ntp true
+  when: openshift.clock.enabled | bool