14 lines
206 B
Bash
14 lines
206 B
Bash
|
function check {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
DESCRIPTION="Only add custom bashrc (advanced users)"
|
||
|
|
||
|
PACKAGES=""
|
||
|
|
||
|
function post-install {
|
||
|
#TODO: configure things
|
||
|
|
||
|
echo "pre-configure/bashrc" >> /tmp/stage-2-choices
|
||
|
}
|