Adding PATH in %post for kickstart

Discussion in 'HOWTO-Related Questions' started by tranthe, Sep 11, 2017.

  1. tranthe

    tranthe New Member

    Hey everyone, I'm looking to add /sbin and /usr/sbin to PATH for all users in %post on my kickstart script. Any help is appreciated, I have included what I have below.

    %post --log=/root/ksoutputfile.log
    #Check for Updates
    yum update -y

    # Users to be added
    useradd -c "xxx" -s /bin/bash -m -d /home/xxx -p '$1$hmjzoDbU$U7nArF0xs8Y45w7f.P4EQ0' xxx
    useradd -c "Test User" -s /bin/bash -m -d /home/test -p '$1$/yw6acw5$zPg3kcwAX7ec2oTIsliZa0' test

    #Changing command path for users
    PATH=$PATH:/sbin:/usr/sbin
    export PATH

    #Add Alias
    alias ll='ls -alF'
     
  2. The easiest way would be,

    Code:
    export PATH=$PATH:/sbin:/usr/sbin
     

Share This Page