Automating Linux User Creation with Bash Script
Anthony Obotidem
Posted on July 5, 2024
In today's fast-paced technology environment, efficiency and automation are key.
Automating tasks with a Bash
script can save a significant amount of time and reduce errors. In this technical report, we will walk through the process of creating a Bash script to automate user and group creation, setting up home directories, and managing permissions and passwords.
Project Overview
Your company has recently hired several new developers, and you need to create user accounts and groups for them. To streamline this process, we will write a Bash script called create_users.sh.
This script will;
Read a text file containing usernames and group names,
- Create users and groups as specified,
- Set up home directories, Generate random passwords, and
- Log all actions to /var/log/user_management.log and store the generated passwords securely in /var/secure/user_passwords.txt. 4. We can create the Bash script called "create_users.sh" with this command; Bash script Implementation steps Let's walk through the script step-by-step to understand its functionality.
Checking root privileges;
This line specifies that the script should be executed with the Bash shell.
shabang
The script checks if it is being run as root. If not, it prompts the user to run the script with root privileges and exits.
Root privileges
Image description
Checking for User Data File;
The script checks if the filename (user-data-file) is provided as an argument. If not, it displays the correct usage and exits.
user data file
Image description
Initializing Variables and Creating Directories;
The script creates the necessary directories and sets appropriate permissions to ensure security.
Here, The 'user_data_file' stores the filename provided as an argument. Additionally 'log_file' and 'password_file' store the paths for logging actions and storing passwords.
Initialize variables
Image description
Generating Random Passwords:
A function to generate random passwords using openssl.
Random password
Image description
Reading User Data File and Creating Users;
The script reads the user data file line by line. For each line, it:
. Trims any leading or trailing whitespaces from the username and groups.
. Checks if the user already exists. If so, it logs the information and moves to the next user.
. Creates the user and assigns them a personal group.
creating users
Image description
Adding Users to Additional Groups;
If additional groups are specified, the script adds the user to these groups, creating the groups if they do not exist.
Adding users
Image description
Setting Home Directory Permissions;
The script sets appropriate permissions for the user's home directory.
Directory permission
Image description
Generating and Storing Passwords; It generates a random password, sets it for the user, and stores it in the password file. Store passwords
Image description
Logging Actions; Finally, the script logs all actions and completes the user creation process. Logging actions Image description
Running the script;
Create the txt file containing the users and the groups;
The user accounts' structure is contained in this text file. Save and close the file.
txt file.
Image description
Every line in the file identifies a user along with the groups (such "admin" or "finance") to which they are assigned. The semicolon divides the groups and users. users.txt has the structure:
user datafile.
Image description
Ensure the script is executable;
Execute script
Image description
Run script; Run script
Image description
Verify the results
Check the log file for actions performed;
Image description
Verify the user passwords file;
Image description
3.Ensure the new users and groups are created correctly;
Image description
Conclusion
This script automates the creation of users and groups, ensuring a streamlined onboarding process. This article is a stage two task in the DevOps of HNG internship. For more information about the HNG Internship and how it can benefit your organization, visit HNG Internship and HNG Hire.
By using this tutorial, you can make your organization's user management procedure more efficient and ensure that new developers are onboarded promptly
Wishing you the best as you continue your Tech journey
Posted on July 5, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
November 30, 2024
November 30, 2024