https://github.com/git-ogawa/cli_cmd
https://github.com/git-ogawa/cli_cmd
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/git-ogawa/cli_cmd
- Owner: git-ogawa
- Created: 2022-10-22T13:01:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-22T15:19:41.000Z (over 2 years ago)
- Last Synced: 2025-01-08T07:26:14.933Z (5 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cli_cmd
This project is to automated-install modern linux commands by `Ansible`.The following commands are installed.
- [range](https://github.com/ranger/ranger)
- [htop](https://htop.dev/images/htop-2.0.png)
- [fd](https://github.com/sharkdp/fd)
- [bat](https://github.com/sharkdp/bat)
- [gdu](https://github.com/dundee/gdu)
- [duf](https://github.com/muesli/duf)## Usage
Clone the project
```
git clone https://github.com/git-ogawa/cli_cmd.git
cd cli_cmd
```Set the ansible properties of the nodes where you want to install commands in `inventory`.
```yml
---
all:
children:
targets:
hosts:
host1:
ansible_host: 10.10.10.10
ansible_user: rocky
ansible_ssh_port: 22
ansible_ssh_private_key_file: ~/.ssh/id_rsa
```Then, run playbooks.
```
$ ansible-playbook install.yml
```## Notes
- Debian-based and RHEL-based platforms are supported.
- Only x86_64 (amd64) is supported.