Go to file
semantic-release-bot c03a27dc61 chore(release): 0.4.0 [skip ci]
# [0.4.0](https://github.com/saltstack-formulas/timezone-formula/compare/v0.3.3...v0.4.0) (2019-08-27)

### Features

* **semantic-release:** add semantic-release ([5290b3e](https://github.com/saltstack-formulas/timezone-formula/commit/5290b3e))
2019-08-27 20:03:03 +00:00
bin ci(travis): add Inspec tests 2019-08-26 10:30:19 +02:00
docs chore(release): 0.4.0 [skip ci] 2019-08-27 20:03:03 +00:00
test ci(travis): add Inspec tests 2019-08-26 10:30:19 +02:00
timezone feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
.gitignore ci(travis): add Inspec tests 2019-08-26 10:30:19 +02:00
.travis.yml Merge pull request #14 from n-rodriguez/wip/sr 2019-08-27 20:55:03 +01:00
.yamllint feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
AUTHORS.md chore(release): 0.4.0 [skip ci] 2019-08-27 20:03:03 +00:00
CHANGELOG.md chore(release): 0.4.0 [skip ci] 2019-08-27 20:03:03 +00:00
FORMULA chore(release): 0.4.0 [skip ci] 2019-08-27 20:03:03 +00:00
Gemfile ci(travis): add Inspec tests 2019-08-26 10:30:19 +02: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): remove useless test suite 2019-08-26 23:15:05 +02:00
pillar.example feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
pre-commit_semantic-release.sh feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
release-rules.js feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02:00
release.config.js feat(semantic-release): add semantic-release 2019-08-26 22:24:10 +02: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 :ref:`How to contribute <CONTRIBUTING>` 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.