diff --git a/README.md b/README.md index 1b20c90..852c666 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ the container. If you want to use some other distro, then you need to manually obtain it from somewhere. -For the sake of convenience, there are compiled binaries of bwrap and squashfuse and their dependencies (utils.tar) uploaded in this repo, you can use them or you can use your own binaries. Use the **create-utils.sh** script to easily compile your own bwrap and squashfuse. Just make sure to set the correct size of the **utils.tar** in the **squashfs-start.sh**. +For the sake of convenience, there are compiled binaries of bwrap and squashfuse and their dependencies (utils.tar) uploaded in this repo, you can use them or you can use your own binaries. Use the **create-utils.sh** script to easily compile your own bwrap and squashfuse. Just make sure to set the correct size of the **utils.tar** in the **conty-start.sh**. ``` ./create-utils.sh diff --git a/squashfs-start.sh b/conty-start.sh similarity index 100% rename from squashfs-start.sh rename to conty-start.sh diff --git a/create-conty.sh b/create-conty.sh index deaf91e..ed5fb15 100755 --- a/create-conty.sh +++ b/create-conty.sh @@ -22,8 +22,8 @@ if [ ! -f utils.tar ] || [ "$(wc -c < utils.tar)" -lt 1000 ]; then wget -q --show-progress "https://github.com/Kron4ek/Conty/raw/master/utils.tar" fi -if [ ! -f squashfs-start.sh ]; then - echo "squashfs-start.sh is required!" +if [ ! -f conty-start.sh ]; then + echo "conty-start.sh is required!" exit 1 fi @@ -48,7 +48,7 @@ if [ ! -f image ] || [ "${use_existing_image}" != "true" ]; then fi # Combine the files into a single executable using cat -cat squashfs-start.sh utils.tar image > conty.sh +cat conty-start.sh utils.tar image > conty.sh chmod +x conty.sh clear