Automating User Creation with Bash Script

Automating User Creation with Bash Script

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.

We can create the Bash script called “create_users.sh” with this command;

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.

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.

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.

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.

Generating Random Passwords;
A function to generate random passwords using openssl.

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.

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.

Setting Home Directory Permissions;
The script sets appropriate permissions for the user’s home directory.

Generating and Storing Passwords;
It generates a random password, sets it for the user, and stores it in the password file.

Logging Actions;
Finally, the script logs all actions and completes the user creation process.

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.
.
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:
.

Ensure the script is executable;

Run script;

Verify the results

Check the log file for actions performed;

Verify the user passwords file;

Ensure the new users and groups are created correctly;

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 intersnhip. 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.

Happy Scripting.