Ansible is a powerful automated operation and maintenance tool. Through its modular design, it can easily manage and configure remote hosts. As a commonly used module of Ansible, the shell module allows us to execute complex commands or scripts on the target host. Whether it is a single command or a complex shell script, the Ansible shell module can easily handle it. This article will comprehensively explain the use of Ansible shell modules from entry to mastery, and combine best practices to help you use this module more efficiently to perform automation tasks. 1. Overview of Ansible shell moduleAnsible's shell module allows us to execute arbitrary Shell commands on the target host. It supports standard Shell command syntax, including pipes, redirections, and other operations, so it is very suitable for handling some scenarios that require complex commands or scripts. 1. Basic syntax of shell module
You can also use ansible-playbook to execute the shell:
2. Common parameters of shell module
2. Basic usage: executing simple commandsExample 1: Execute the uptime commandUse the ansible -m shell -a 'uptime' command to execute the uptime command directly on the remote host managed by Ansible. This command uses the shell module and passes command parameters through the -a parameter. Successful execution is as follows: To use ansible-playbook to execute, you must first write a yml file with the following content: The above content uses the shell module to execute uptime, store the output result in uptime_output, and output it to the terminal as standard. This example executes the uptime command on all target hosts to obtain the system uptime. Example 2: Running multiple commandsAnsible's shell module supports executing multiple commands, and commands can be concatenated through pipelines (&& or ;). You can also execute it through ansible-playbook: In this example, df -h is used to view the disk space, and then uptime is executed to view the system load. 3. Advanced Applications: Multi-line Commands and Script ExecutionThe shell module supports the execution of multi-line commands, allowing you to run a complete shell script in one task. Example 3: Execute multiple lines of commands In this example, the | symbol indicates a multi-line command, and the task will:
Example 4: Using conditional judgment to execute commandsThe shell module can also be combined with conditional judgment to execute commands. As shown below, the directory /tmp/mydir will be created only if it does not exist. Advanced features: Avoiding duplicate execution and working directoriesExample 5: Avoiding repeated execution of commandsSometimes we don’t want to execute the same command every time we run a Playbook. The creates parameter can help us avoid this. If the /tmp/example.txt file already exists, the task will not be executed, thus avoiding duplicate creation of the file. Example 6: Execute a command in a specific directoryThe chdir parameter allows you to specify the working directory for command execution. This is very useful when you need to execute a command in a project directory. This task will go to the /path/to/project directory and execute the git pull command to update the code. FAQ and Best PracticesNotes when using the shell module:
Performance optimization:
SummarizeAnsible's shell module provides powerful functions, allowing us to execute complex commands and scripts on the target host. By properly using the various features of the shell module, we can greatly simplify automated operation and maintenance work and improve production efficiency. |
Founded in 2014, ExtraVM is a foreign hosting com...
On August 11, according to foreign media reports,...
Speaking of the Communications Design Institute, ...
Finnish operator Elisa said its 5G network has be...
According to Sina Technology, at the 2021 Technol...
Since the beginning of this year, South Korea, Ja...
During an internal Java service audit, we discove...
The development of cloud servers is unstoppable. ...
Commercial Wi-Fi is a wireless Internet service p...
my country's 5G has been officially commercia...
Cellular and Wi-Fi networks have come together to...
In the rapidly developing 21st century, one of th...
ZJI has newly launched Taiwan CN2 line servers, a...
[51CTO.com original article] At 9:00 am on May 22...
CloudCone's Easter promotion started on the m...