Skip to content

Instantly share code, notes, and snippets.

View dominusceo's full-sized avatar
🏅
Focusing

Ricardo David Carrillo Sanchez dominusceo

🏅
Focusing
View GitHub Profile
@dominusceo
dominusceo / changepassword.php
Created May 2, 2020 21:53 — forked from mattrude/changepassword.php
LDAP PHP Change Password Page
<?php
/**
* LDAP PHP Change Password Webpage
* @author: Matt Rude <http://mattrude.com>
* @website: http://technology.mattrude.com/2010/11/ldap-php-change-password-webpage/
*
*
* GNU GENERAL PUBLIC LICENSE
* Version 2, June 1991
@dominusceo
dominusceo / ansible-vault.md
Created May 14, 2020 03:27 — forked from xoyabc/ansible-vault.md
Ansible-vault example

Ansible vault example

New in Ansible 1.5, “Vault” is a feature of ansible that allows keeping sensitive data such as passwords or keys in encrypted files, rather than as plaintext in your playbooks or roles. These vault files can then be distributed or placed in source control. To enable this feature, a command line tool, ansible-vault is used to edit files, and a command line flag –ask-vault-pass or –vault-password-file is used. Alternately, you may specify the location of a password file or command Ansible to always prompt for the password in your ansible.cfg file. These options require no command line flag usage.

Requirements