Go to file
Imran Iqbal 26bf1ff075
Merge pull request #24 from mgomersbach/fix_specify_full_package_name_for_Gentoo
fix(osfamilmap.yaml): dbus pkg name is not specific enough on Gentoo
2020-03-27 09:24:49 +00:00
bin ci: merge travis matrix, add `salt-lint` & `rubocop` to `lint` job 2019-10-09 03:07:38 +01:00
docs chore(release): 0.4.3 [skip ci] 2020-03-24 14:12:54 +00:00
test fix(rubocop): add fixes using `rubocop --safe-auto-correct` 2019-10-12 01:16:05 +01:00
timezone fix(osfamilmap.yaml): dbus pkg name is not specific enough on Gentoo 2020-03-27 10:09:20 +01:00
.gitignore chore(gitignore): update from the `template-formula` [skip ci] 2020-02-14 22:32:46 +00:00
.rubocop.yml chore(rubocop): move `LineLength` cop from `Metrics` to `Layout` [skip ci] 2020-02-14 12:54:05 +00:00
.salt-lint ci(travis): update `salt-lint` config for `v0.0.10` [skip ci] 2019-10-23 17:34:06 +01:00
.travis.yml ci(kitchen+travis): adjust matrix to add `3000` & remove `2017.7` 2020-03-24 12:20:13 +00:00
.yamllint ci: merge travis matrix, add `salt-lint` & `rubocop` to `lint` job 2019-10-09 03:07:38 +01:00
AUTHORS.md chore(release): 0.4.3 [skip ci] 2020-03-24 14:12:54 +00:00
CHANGELOG.md chore(release): 0.4.3 [skip ci] 2020-03-24 14:12:54 +00:00
FORMULA chore(release): 0.4.3 [skip ci] 2020-03-24 14:12:54 +00:00
Gemfile ci(gemfile): restrict `train` gem version until upstream fix [skip ci] 2019-12-16 13:47:25 +00:00
LICENSE feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
commitlint.config.js feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
kitchen.yml ci(kitchen+travis): adjust matrix to add `3000` & remove `2017.7` 2020-03-24 12:20:13 +00:00
pillar.example feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
pre-commit_semantic-release.sh ci(travis): run `shellcheck` during lint job [skip ci] 2019-11-27 20:53:57 +00:00
release-rules.js feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
release.config.js fix(release.config.js): use full commit hash in commit link [skip ci] 2019-10-31 10:29:42 +00:00

docs/README.rst

.. _readme:

timezone-formula
================

|img_travis| |img_sr|

.. |img_travis| image:: https://travis-ci.com/saltstack-formulas/timezone-formula.svg?branch=master
   :alt: Travis CI Build Status
   :scale: 100%
   :target: https://travis-ci.com/saltstack-formulas/timezone-formula
.. |img_sr| image:: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
   :alt: Semantic Release
   :scale: 100%
   :target: https://github.com/semantic-release/semantic-release

Formula to set up and configure timezone.

.. contents:: **Table of Contents**

General notes
-------------

See the full `SaltStack Formulas installation and usage instructions
<https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html>`_.

If you are interested in writing or contributing to formulas, please pay attention to the `Writing Formula Section
<https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html#writing-formulas>`_.

If you want to use this formula, please pay attention to the ``FORMULA`` file and/or ``git tag``,
which contains the currently released version. This formula is versioned according to `Semantic Versioning <http://semver.org/>`_.

See `Formula Versioning Section <https://docs.saltstack.com/en/latest/topics/development/conventions/formulas.html#versioning>`_ for more details.

Contributing to this repo
-------------------------

**Commit message formatting is significant!!**

Please see `How to contribute <https://github.com/saltstack-formulas/.github/blob/master/CONTRIBUTING.rst>`_ for more details.

Available states
----------------

.. contents::
    :local:

``timezone``
^^^^^^^^^^^^
Installs and configures the timezone package.

Testing
-------

Linux testing is done with ``kitchen-salt``.

Requirements
^^^^^^^^^^^^

* Ruby
* Docker

.. code-block:: bash

   $ gem install bundler
   $ bundle install
   $ bin/kitchen test [platform]

Where ``[platform]`` is the platform name defined in ``kitchen.yml``,
e.g. ``debian-9-2019-2-py3``.

``bin/kitchen converge``
^^^^^^^^^^^^^^^^^^^^^^^^

Creates the docker instance and runs the ``timezone`` main state, ready for testing.

``bin/kitchen verify``
^^^^^^^^^^^^^^^^^^^^^^

Runs the ``inspec`` tests on the actual instance.

``bin/kitchen destroy``
^^^^^^^^^^^^^^^^^^^^^^^

Removes the docker instance.

``bin/kitchen test``
^^^^^^^^^^^^^^^^^^^^

Runs all of the stages above in one go: i.e. ``destroy`` + ``converge`` + ``verify`` + ``destroy``.

``bin/kitchen login``
^^^^^^^^^^^^^^^^^^^^^

Gives you SSH access to the instance for manual testing.