Remove useless quotes.
This commit is contained in:
parent
c0bbece614
commit
439efc750d
|
@ -1,10 +1,13 @@
|
||||||
## Release x.x.x
|
## Release 0.3.x
|
||||||
#### Features
|
#### Features
|
||||||
* Delete the extra partition for free space with the Debian's preseed (#2).
|
* Delete the extra partition for free space with the Debian's preseed (#2).
|
||||||
* Add some backgrounds (#4).
|
* Add some backgrounds (#4).
|
||||||
|
* Update Clonezilla and Gparted to their latest version.
|
||||||
|
* Swap is now between 25% of the RAM and 32GB at max.
|
||||||
|
|
||||||
#### Fixes
|
#### Fixes
|
||||||
* Use the new IP address.
|
* Use the new IP address.
|
||||||
|
* Use shellcheck to ensure POSIX compatibility.
|
||||||
|
|
||||||
## Release 0.3.0
|
## Release 0.3.0
|
||||||
### Summary
|
### Summary
|
||||||
|
|
|
@ -17,7 +17,7 @@ touch "${CZ_CONFIG_PXE}"
|
||||||
|
|
||||||
for ARCH in amd64 i686; do # For available classic architecture
|
for ARCH in amd64 i686; do # For available classic architecture
|
||||||
CZ_URL="https://osdn.jp/dl/clonezilla/clonezilla-live-${CZ_VERSION}-${ARCH}.zip"
|
CZ_URL="https://osdn.jp/dl/clonezilla/clonezilla-live-${CZ_VERSION}-${ARCH}.zip"
|
||||||
CZ_TEMP_FILE="/tmp/clonezilla-live-"${CZ_VERSION}"-"${ARCH}".zip "
|
CZ_TEMP_FILE="/tmp/clonezilla-live-${CZ_VERSION}-${ARCH}.zip "
|
||||||
|
|
||||||
# Create and go into directory
|
# Create and go into directory
|
||||||
mkdir -p ${CZ_INSTALLER_DIR}/${ARCH}
|
mkdir -p ${CZ_INSTALLER_DIR}/${ARCH}
|
||||||
|
|
Loading…
Reference in New Issue