2023-12-15

  • Setting this Wily feature and revamping my site.
  • Ansible Semaphore UI - setting up Key Store,Repositories,Inventory and Task Templates
    • Hello World ansible playbook
$ cat hello-world-01.yml 
---
- hosts: all
  tasks:
    - name: Print message
      debug: 
        msg: Hello World

$ cat inventory 
	10.22.13.84 ansible_user=debian
  • Downloading mp3 version of a video from YouTube using yt-dlp

    sudo yt-dlp -f bestaudio -x --audio-format mp3 --audio-quality 0 "<<Youtube_link>>"