Skip to content

Commit

Permalink
Add Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
redbeard28 committed May 30, 2017
1 parent 2f25c5f commit 6326a20
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
25 changes: 25 additions & 0 deletions README-FR.md
Expand Up @@ -14,6 +14,31 @@ Context
=======
Avec les évenements récents concernant les cyber-attaques, nous nous devons de mettre en place tous les moyens à notre dispositions pour durcir les serveurs de nos clients.

## Role Variables
Vous devez paramétrer les variables pour l'emplacement des binaires hponcfg/ipmitool

```yml
---
hp_bin: /sbin/hponcfg
oracle_bin: /usr/bin/ipmitool
```

## Example Playbook


```yml
---
- hosts: all
become_method: sudo
vars_files:
- secrets/yourfile.secrets.yml
vars:
passwdHPiLo: "{{ vault_HP_ilo_hpadmin_pwd }}"
passwdORACLEiLo: "{{ vault_ORACLE_ilo_admin_pwd }}"
roles:
- {role: iLo , tags: iLo-change }
```


## Information sur l'auteur
Made with passion by Jérémie CUADRADO [Linkedin](http://lnked.in/jcua)
Expand Down
13 changes: 12 additions & 1 deletion README.md
Expand Up @@ -15,6 +15,15 @@ The objective is to set up an Ansible role to change automaticly the HP iLo pass

With the recent cyber-attacks events, we have to put in place all the means at our disposal to harden the servers of our customers.

## Role Variables
You need to put path of hponcfg/ipmitool binaries

```yml
---
hp_bin: /sbin/hponcfg
oracle_bin: /usr/bin/ipmitool
```

## Example Playbook


Expand All @@ -23,13 +32,15 @@ With the recent cyber-attacks events, we have to put in place all the means at o
- hosts: all
become_method: sudo
vars_files:
- secrets/yourfile.secrets
- secrets/yourfile.secrets.yml
vars:
passwdHPiLo: "{{ vault_HP_ilo_hpadmin_pwd }}"
passwdORACLEiLo: "{{ vault_ORACLE_ilo_admin_pwd }}"
roles:
- {role: iLo , tags: iLo-change }
```


## Author Information
Made with passion by Jérémie CUADRADO [Linkedin](http://lnked.in/jcua)

Expand Down

0 comments on commit 6326a20

Please sign in to comment.