- gitlab omnibus
- gitlab backup
- gitlab create backup
- gitlab restor
- gitlab-raketask
- gitlab-rake ldap
- gitlab-rake maintenance
- gitlab-rake check
- omnibus - maintenance
- Results of GitLab environment info
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Send prefix | |
| set-option -g prefix C-a | |
| unbind-key C-a | |
| bind-key C-a send-prefix | |
| # Use Alt-arrow keys to switch panes | |
| bind -n M-Left select-pane -L | |
| bind -n M-Right select-pane -R | |
| bind -n M-Up select-pane -U | |
| bind -n M-Down select-pane -D |
➜ ~ sudo fdisk /dev/sda
Welcome to fdisk (util-linux 2.34).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): p
Disk /dev/sda: 24.42 GiB, 26214400000 bytes, 51200000 sectors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // TestMacro.scala | |
| import scala.quoted.* | |
| object TestMacro { | |
| inline def name[E](e: E): String = ${ nameImpl[E]('e) } | |
| def nameImpl[E: Type](e: Expr[E])(using Quotes): Expr[String] = { | |
| import quotes.reflect.* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - name: Ejecutar Proceso con VAULT_TOKEN | |
| hosts: localhost # Puedes ajustar los hosts según tu entorno | |
| gather_facts: false # Desactivar recopilación de hechos | |
| vars: | |
| vault_address: "http://direccion-de-tu-vault:8200" # Ajusta la dirección de tu Vault Server | |
| tasks: | |
| - name: Establecer VAULT_TOKEN como variable de entorno |
OlderNewer