File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,20 @@ export SUITE
1818export OVERRIDER_MIRROR
1919export INCLUDE_PACKAGES
2020export DISABLE_LOCAL_DEBOOTSTRAP
21- export FS_USER
22- export FS_PASS
21+ export ENABLE_USER_SETUP
22+ # export FS_USER
23+ # export FS_PASS
2324
2425SUITE=" kali-rolling"
25- FS_USER=" kali"
26- FS_PASS=" kali" # no need to sepecify FS_UID & FS_GID cause default is 1001
26+ # FS_USER="kali"
27+ # FS_PASS="kali" # no need to sepecify FS_UID & FS_GID cause default is 1001
2728OVERRIDER_MIRROR=" http://http.kali.org/kali"
2829frn=" out/${SUITE} -raw"
2930INCLUDE_PACKAGES=" sudo apt-utils"
3031OVERRIDER_COMPRESSION_TYPE=" gzip"
3132ENABLE_EXIT=true
3233DISABLE_LOCAL_DEBOOTSTRAP=true
34+ ENABLE_USER_SETUP=false
3335
3436warn " for best results use kali-linux host for building"
3537
Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ source plugins/colors
99
1010export OVERRIDER_COMPRESSION_TYPE
1111export ENABLE_EXIT
12- export FS_USER
13- export FS_PASS
12+ export ENABLE_USER_SETUP
13+ # export FS_USER
14+ # export FS_PASS
1415
1516frn=" out/hirsute-raw"
1617OVERRIDER_COMPRESSION_TYPE=" gzip"
1718ENABLE_EXIT=true
19+ ENABLE_USER_SETUP=false
1820
1921do_debootstrap " ${frn} -arm64" arm64
2022do_compress " ${frn} -arm64"
Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ do_debootstrap() {
324324 manpages-dev \
325325 init-system-helpers"
326326
327- if ! $DISABLE_USER_SETUP ; then
327+ if $ENABLE_USER_SETUP ; then
328328 setup_user
329329 fi
330330
You can’t perform that action at this time.
0 commit comments