mass change: apply snake case to tokens (#2518)

This commit is contained in:
Guido Lena Cota
2018-10-29 12:14:25 +01:00
committed by Starbeamrainbowlabs
parent 9a9265c672
commit 18370557b2
11 changed files with 20 additions and 20 deletions

View File

@@ -17,12 +17,12 @@
- Execute a command on a group of hosts by invoking command module with arguments:
`ansible {{group}} -m command -a '{{my command}}'`
`ansible {{group}} -m command -a '{{my_command}}'`
- Execute a command with administrative privileges:
`ansible {{group}} --become --ask-become-pass -m command -a '{{my command}}'`
`ansible {{group}} --become --ask-become-pass -m command -a '{{my_command}}'`
- Execute a command using a custom inventory file:
`ansible {{group}} -i {{inventory_file}} -m command -a '{{my command}}'`
`ansible {{group}} -i {{inventory_file}} -m command -a '{{my_command}}'`

View File

@@ -16,4 +16,4 @@
- Create an entry:
`arp -s {{address}} {{mac address}}`
`arp -s {{address}} {{mac_address}}`

View File

@@ -4,7 +4,7 @@
- Create local alias for director:
`bosh alias-env {{environment-name}} -e {{ip address or url}} --ca-cert {{ca_certificate}}`
`bosh alias-env {{environment_name}} -e {{ip_address|url}} --ca-cert {{ca_certificate}}`
- List environments:
@@ -24,11 +24,11 @@
- Ssh into virtual machine:
`bosh -e {{environment}} ssh {{virtual machine}} -d {{deployment}}`
`bosh -e {{environment}} ssh {{virtual_machine}} -d {{deployment}}`
- Upload stemcell:
`bosh -e {{environment}} upload-stemcell {{stemcell file or url}}`
`bosh -e {{environment}} upload-stemcell {{stemcell_file|url}}`
- Show current cloud config:

View File

@@ -4,7 +4,7 @@
- Add a package as a dependency for this project, adding it to `composer.json`:
`composer require {{user/package-name}}`
`composer require {{user/package_name}}`
- Install all the dependencies in this project's `composer.json`:
@@ -12,7 +12,7 @@
- Uninstall a package from this project, removing it as a dependency from `composer.json`:
`composer remove {{user/package-name}}`
`composer remove {{user/package_name}}`
- Update all the dependencies in this project's `composer.json`:

View File

@@ -4,7 +4,7 @@
- Create a cordova project:
`cordova create {{path}} {{package.name}} {{project.name}}`
`cordova create {{path}} {{package_name}} {{project_name}}`
- Display the current workspace status:

View File

@@ -17,7 +17,7 @@
- List available tests, filtered by a given search pattern:
`cppcheck --errorlist | grep "{{search pattern}}"`
`cppcheck --errorlist | grep "{{search_pattern}}"`
- Check a given file, ignoring specific tests:

View File

@@ -4,11 +4,11 @@
- Change the password of the current user:
`passwd {{new password}}`
`passwd {{new_password}}`
- Change the password of the specified user:
`passwd {{username}} {{new password}}`
`passwd {{username}} {{new_password}}`
- Get the current status of the user:

View File

@@ -12,7 +12,7 @@
- Authenticate the CLI client against the Vault server, using an authentication token:
`vault auth {{authentication-token}}`
`vault auth {{authentication_token}}`
- Store a new secret in the vault, using the generic back-end called "secret":