DEV Community

Cover image for Automating Linux User Creation with Bash Script
Hisbarry
Hisbarry

Posted on

Automating Linux 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;

  1. Read a text file containing usernames and group names,
  2. Create users and groups as specified,
  3. Set up home directories,
  4. Generate random passwords, and
  5. 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; Bash script

Implementation steps
Let's walk through the script step-by-step to understand its functionality.

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

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

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

  4. Generating Random Passwords:
    A function to generate random passwords using openssl.
    Random password

Image description

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

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

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

Image description

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

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

Running the script;

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

  2. Ensure the script is executable;
    Execute script

Image description

  1. Run script; Run script

Image description

Verify the results

  1. Check the log file for actions performed;

Image description

  1. 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 πŸ™‚πŸ’―.

Top comments (0)