Skip to content

Commit 12bc094

Browse files
authored
Merge pull request #203 from vimanuelt/master
Add POOL_Size variable to improve flexibility and maintainability
2 parents c674c73 + 5765104 commit 12bc094

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ workspace()
132132
mkdir -p ${livecd} ${base} ${iso} ${software_packages} ${base_packages} ${release}
133133

134134
# Create a new pool image file of 6GB
135-
truncate -s 6g ${livecd}/pool.img
135+
POOL_SIZE='6g'
136+
truncate -s ${POOL_SIZE} ${livecd}/pool.img
136137

137138
# Attach the pool image as a memory disk
138139
mdconfig -f ${livecd}/pool.img -u 0

0 commit comments

Comments
 (0)