├── .github └── workflows │ └── commitlint.yml ├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── .rstcheck.cfg ├── .rubocop.yml ├── .salt-lint ├── .travis.yml ├── .yamllint ├── AUTHORS.md ├── CHANGELOG.md ├── CODEOWNERS ├── FORMULA ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── bin ├── install-hooks └── kitchen ├── commitlint.config.js ├── docs ├── AUTHORS.rst ├── CHANGELOG.rst └── README.rst ├── kitchen.yml ├── ntp ├── init.sls ├── local_server │ ├── files │ │ ├── ntp.CentOS.5.conf │ │ ├── ntp.CentOS.6.conf │ │ └── orig │ │ │ ├── ntp.CentOS.5.conf.orig │ │ │ └── ntp.CentOS.6.conf.orig │ └── init.sls ├── map.jinja ├── ng │ ├── _mapdata │ │ ├── _mapdata.jinja │ │ └── init.sls │ ├── files │ │ └── ntp.conf │ ├── init.sls │ └── map.jinja ├── ntp-client.conf ├── ntp.conf ├── ntpdate.sls └── server.sls ├── pillar.example ├── pre-commit_semantic-release.sh ├── release-rules.js ├── release.config.js └── test ├── integration ├── default │ ├── README.md │ ├── controls │ │ ├── config_spec.rb │ │ ├── packages_spec.rb │ │ └── services_spec.rb │ └── inspec.yml └── share │ ├── README.md │ ├── inspec.yml │ └── libraries │ └── system.rb └── salt ├── pillar └── default.sls └── states └── custom_systemd_service.sls /.github/workflows/commitlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.github/workflows/commitlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.rstcheck.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.rstcheck.cfg -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.salt-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.salt-lint -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/.yamllint -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /FORMULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/FORMULA -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/install-hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/bin/install-hooks -------------------------------------------------------------------------------- /bin/kitchen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/bin/kitchen -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/docs/AUTHORS.rst -------------------------------------------------------------------------------- /docs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/docs/CHANGELOG.rst -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/docs/README.rst -------------------------------------------------------------------------------- /kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/kitchen.yml -------------------------------------------------------------------------------- /ntp/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/init.sls -------------------------------------------------------------------------------- /ntp/local_server/files/ntp.CentOS.5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/local_server/files/ntp.CentOS.5.conf -------------------------------------------------------------------------------- /ntp/local_server/files/ntp.CentOS.6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/local_server/files/ntp.CentOS.6.conf -------------------------------------------------------------------------------- /ntp/local_server/files/orig/ntp.CentOS.5.conf.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/local_server/files/orig/ntp.CentOS.5.conf.orig -------------------------------------------------------------------------------- /ntp/local_server/files/orig/ntp.CentOS.6.conf.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/local_server/files/orig/ntp.CentOS.6.conf.orig -------------------------------------------------------------------------------- /ntp/local_server/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/local_server/init.sls -------------------------------------------------------------------------------- /ntp/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/map.jinja -------------------------------------------------------------------------------- /ntp/ng/_mapdata/_mapdata.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ng/_mapdata/_mapdata.jinja -------------------------------------------------------------------------------- /ntp/ng/_mapdata/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ng/_mapdata/init.sls -------------------------------------------------------------------------------- /ntp/ng/files/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ng/files/ntp.conf -------------------------------------------------------------------------------- /ntp/ng/init.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ng/init.sls -------------------------------------------------------------------------------- /ntp/ng/map.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ng/map.jinja -------------------------------------------------------------------------------- /ntp/ntp-client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ntp-client.conf -------------------------------------------------------------------------------- /ntp/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ntp.conf -------------------------------------------------------------------------------- /ntp/ntpdate.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/ntpdate.sls -------------------------------------------------------------------------------- /ntp/server.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/ntp/server.sls -------------------------------------------------------------------------------- /pillar.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/pillar.example -------------------------------------------------------------------------------- /pre-commit_semantic-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/pre-commit_semantic-release.sh -------------------------------------------------------------------------------- /release-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/release-rules.js -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/release.config.js -------------------------------------------------------------------------------- /test/integration/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/default/README.md -------------------------------------------------------------------------------- /test/integration/default/controls/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/default/controls/config_spec.rb -------------------------------------------------------------------------------- /test/integration/default/controls/packages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/default/controls/packages_spec.rb -------------------------------------------------------------------------------- /test/integration/default/controls/services_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/default/controls/services_spec.rb -------------------------------------------------------------------------------- /test/integration/default/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/default/inspec.yml -------------------------------------------------------------------------------- /test/integration/share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/share/README.md -------------------------------------------------------------------------------- /test/integration/share/inspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/share/inspec.yml -------------------------------------------------------------------------------- /test/integration/share/libraries/system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/integration/share/libraries/system.rb -------------------------------------------------------------------------------- /test/salt/pillar/default.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/salt/pillar/default.sls -------------------------------------------------------------------------------- /test/salt/states/custom_systemd_service.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saltstack-formulas/ntp-formula/HEAD/test/salt/states/custom_systemd_service.sls --------------------------------------------------------------------------------