From 0841bceb82f835b03e619ccc690dbd056f836ff4 Mon Sep 17 00:00:00 2001 From: L3D Date: Thu, 25 Apr 2024 00:53:27 +0200 Subject: [PATCH] Add color support to ip --- README.md | 4 ++-- galaxy.yml | 2 +- roles/dotfiles/defaults/main.yml | 2 ++ roles/dotfiles/vars/main.yml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5cc03c1..6ba7248 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ And it is also possible to delete users. ## Using this Collection You can install the collection using ansible-galaxy by running: ```bash -ansible-galaxy collection install l3d.users:1.1.2 +ansible-galaxy collection install l3d.users:1.1.3 ``` Remember you can to Upgrade to the latest version of the l3d.git collection using the ``--upgrade`` parameter: @@ -45,7 +45,7 @@ You can also list a collection in ``requirements.yml``: --- collections: - name: l3d.users - version: ">=1.1.2" + version: ">=1.1.3" ``` Global Variables: diff --git a/galaxy.yml b/galaxy.yml index 26abcb7..b385a07 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: l3d name: users # The version of the collection. Must be compatible with semantic versioning -version: 1.1.2 +version: 1.1.3 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/roles/dotfiles/defaults/main.yml b/roles/dotfiles/defaults/main.yml index 690ad85..f21f6e4 100644 --- a/roles/dotfiles/defaults/main.yml +++ b/roles/dotfiles/defaults/main.yml @@ -44,6 +44,8 @@ l3d_users__dotfiles__aliases: - {alias: "gitsubpull", command: "git submodule foreach '(git checkout \\$(git symbolic-ref --short refs/remotes/origin/HEAD | sed 's@^origin/@@'); git pull ; git submodule foreach \\\"(git checkout \\$(git symbolic-ref --short refs/remotes/origin/HEAD | sed 's@^origin/@@'); git pull)\\\")'", color: false} - {alias: "pwgen", command: "/usr/bin/pwgen --num-passwords=3000 --numerals --capitalize --secure --no-vowels --ambiguous 95 1", color: false} - {alias: "gdiff", command: "git diff --submodule=diff", color: false} + - {alias: "ip", command: "ip ", color: true} + l3d_users__dotfiles__additional_user_bashrc_lines: [] l3d_users__bashrc_path: "$HOME/.local/bin:$HOME/bin:$HOME/.cargo/env:$PATH" diff --git a/roles/dotfiles/vars/main.yml b/roles/dotfiles/vars/main.yml index f6f1e7a..93d31ac 100644 --- a/roles/dotfiles/vars/main.yml +++ b/roles/dotfiles/vars/main.yml @@ -5,5 +5,5 @@ l3d_users__dotfiles_packages: - htop - tmux -playbook_version_number: 8 +playbook_version_number: 9 playbook_version_path: 'l3d.users.dotfiles.version'