mirror of
https://github.com/kevin-leptons/lfs-auto.git
synced 2026-01-12 15:39:47 +00:00
17 lines
249 B
Bash
Executable File
17 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# using : configure shells
|
|
# author : kevin.leptons@gmail.com
|
|
|
|
# libs
|
|
source util.sh
|
|
|
|
# variables
|
|
task_name="sys.shell.configure"
|
|
|
|
config_shell() {
|
|
cp -vp asset/etc.shells.sh /etc/shells
|
|
}
|
|
|
|
run_step "$task_name" config_shell
|