Copy shell script and execute it using Ansible.
Here we will see one Complete example to copy shell script and execute it, & get its output. I. Make Ansible Conifguration # cat ansible.cfg [defaults] inventory = hosts remote_user=saket...
Here we will see one Complete example to copy shell script and execute it, & get its output. I. Make Ansible Conifguration # cat ansible.cfg [defaults] inventory = hosts remote_user=saket...
In this post, we will see how to run a command with root user in ansible. There are two ways to do this. Lets have a look at both of...
In this post we will see how to update the nvidia driver in Linux. Lets see it step by step to understand the process. 1. Download the required package...
In this post, we will see an interesting article to know how to link LDAP authentication in http/apache webserver. While linking, if you see an error like below, it means...
Today lets see quickly how to print a sequence of 100 numbers using while loop in bash shell on Linux. Printing sequence of 100 numbers a. Empty the file. [root@ngelinux001...
Have you ever worked in latest versions of fedora ? If yes, you might have observed some directories “/run/user/some-number” when doing “df -h”. Lets see the command output. [saket@localhost ~]$...
In this article, we will look at different ways to let our process running in background even after we close our terminal, or our session timeout, or due to any...
In this post, we will look at the tips of using docker to get images and creating & working with containers. 1. Pull an image: $ docker pull centos Using...
Lets see how to run a playbook on a single selected host or multiple selected hosts. We can either make groups in hosts file or mention the host name using...