Commit 432ab770 authored by nimrod's avatar nimrod
Browse files

- First commit.

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+12 −0
Original line number Diff line number Diff line
*.swp
*.swo
~*
*~
.DS_Store
__pycache__
*.pyc
.cache/
.molecule/
.vagrant/
*.log
*.retry
+13 −0
Original line number Diff line number Diff line
-   repo: git://github.com/pre-commit/pre-commit-hooks
    sha: 97b88d9610bcc03982ddac33caba98bb2b751f5f
    hooks:
    -   id: check-added-large-files
    -   id: check-json
    -   id: check-xml
    -   id: check-yaml
    -   id: check-merge-conflict
-   repo: https://www.shore.co.il/git/ansible-pre-commit/
    sha: 8c4a3e7b57164d8cb0da75db3be08587d0f0b173
    hooks:
    -   id: ansible-pre-commit
        files: playbook.yml

LICENSE.txt

0 → 100644
+21 −0
Original line number Diff line number Diff line
The MIT License (MIT)

Copyright (c) [year] [fullname]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

README.rst

0 → 100644
+61 −0
Original line number Diff line number Diff line
OpenBSD bootstrap
#################

Role to bootstrap an OpenBSD instance (allow Ansible to provision the instance).

Requirements
------------

OpenBSD 5.7 or later.

Role Variables
--------------

.. code:: yaml

    openbsd_pkg_mirror: http://www.mirrorservice.org/pub #OpenBSD mirror to use.

Dependencies
------------

None.

Example Playbook
----------------
.. code:: yaml

    ---
    - hosts: all
      gather_facts: False
      roles:
      - ansible-role-openbsd-bootstrap

Example requirements.yml
------------------------
.. code:: yaml

    ---
    - src: https://www.shore.co.il/git/ansible-role-openbsd-bootstrap
      scm: git
      path: roles/
      name: openbsd-bootsrrap

License
-------

This software is licensed under the MIT license (see the :code:`LICENSE.txt`
file).

Testing
-------

Testing is done with `Molecule <https://molecule.readthedocs.org/>`_. Also, this
repository has `pre-commit <http://pre-commit.com/>`_ configured.

Author Information
------------------

Nimrod Adar, `contact me <nimrod@shore.co.il>`_ or visit my `website
<https://www.shore.co.il/>`_. Patches are welcome via `git send-email
<http://git-scm.com/book/en/v2/Git-Commands-Email>`_. The repository is located
at: https://www.shore.co.il/git/.

defaults/main.yml

0 → 100644
+4 −0
Original line number Diff line number Diff line
---
# defaults file for ansible-role-openbsd-bootstrap

openbsd_pkg_mirror: http://www.mirrorservice.org/pub
Loading