mirror of
https://github.com/kevin-leptons/lfs-auto.git
synced 2026-01-12 15:39:47 +00:00
21 lines
349 B
Bash
Executable File
21 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# using : configure user and software
|
|
# author : kevin.leptons@gmail.com
|
|
|
|
# libs
|
|
source configuration.sh
|
|
source util.sh
|
|
|
|
# variables
|
|
task_name="sys.user"
|
|
|
|
# step.profile
|
|
step_profile_config() {
|
|
cp -vpu /lfs-script/asset/user.profile.sh /root/.profile
|
|
}
|
|
|
|
# run
|
|
run_step "$task_name.root.profile.cp" step_profile_config
|
|
exit 0
|