Skip to content

Commit 508a771

Browse files
committed
fix fsSLSL to fsSL
1 parent a022619 commit 508a771

16 files changed

+18
-18
lines changed

ct/grocy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function update_script() {
3030
php_version=$(php -v | head -n 1 | awk '{print $2}')
3131
if [[ ! $php_version == "8.3"* ]]; then
3232
msg_info "Updating PHP"
33-
curl -fsSLSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
33+
curl -fsSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
3434
echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ bookworm main" >/etc/apt/sources.list.d/php.list
3535
apt-get update
3636
apt-get install -y php8.3 php8.3-cli php8.3-{bz2,curl,mbstring,intl,sqlite3,fpm,gd,zip,xml}
@@ -51,4 +51,4 @@ description
5151
msg_ok "Completed Successfully!\n"
5252
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
5353
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
54-
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}"
54+
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}"

install/alpine-docker-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
6767
msg_info "Installing Docker Compose $DOCKER_COMPOSE_LATEST_VERSION"
6868
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
6969
mkdir -p $DOCKER_CONFIG/cli-plugins
70-
curl -fsSLSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
70+
curl -fsSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
7171
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
7272
msg_ok "Installed Docker Compose $DOCKER_COMPOSE_LATEST_VERSION"
7373
fi

install/docker-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ msg_info "Installing Docker $DOCKER_LATEST_VERSION"
2626
DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
2727
mkdir -p $(dirname $DOCKER_CONFIG_PATH)
2828
echo -e '{\n "log-driver": "journald"\n}' >/etc/docker/daemon.json
29-
$STD sh <(curl -fsSLSL https://get.docker.com)
29+
$STD sh <(curl -fsSL https://get.docker.com)
3030
msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
3131

3232
read -r -p "Would you like to add Portainer? <y/N> " prompt

install/dockge-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ msg_info "Installing Docker $DOCKER_LATEST_VERSION"
2424
DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
2525
mkdir -p $(dirname $DOCKER_CONFIG_PATH)
2626
echo -e '{\n "log-driver": "journald"\n}' >/etc/docker/daemon.json
27-
$STD sh <(curl -fsSLSL https://get.docker.com)
27+
$STD sh <(curl -fsSL https://get.docker.com)
2828
msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
2929

3030
msg_info "Installing Docker Compose $DOCKER_COMPOSE_LATEST_VERSION"
3131
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
3232
mkdir -p $DOCKER_CONFIG/cli-plugins
33-
curl -fsSLSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
33+
curl -fsSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
3434
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
3535
msg_ok "Installed Docker Compose $DOCKER_COMPOSE_LATEST_VERSION"
3636

install/firefly-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ network_check
1414
update_os
1515

1616
msg_info "Installing Dependencies"
17-
curl -fsSLSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
17+
curl -fsSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
1818
echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ bookworm main" >/etc/apt/sources.list.d/php.list
1919
$STD apt-get update
2020
$STD apt-get install -y \

install/grocy-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ msg_ok "Installed Dependencies"
1919

2020
msg_info "Installing PHP8.2"
2121
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
22-
curl -fsSLSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
22+
curl -fsSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg
2323
echo -e "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $VERSION main" >/etc/apt/sources.list.d/php.list
2424
$STD apt-get update
2525
$STD apt-get install -y php8.2

install/homeassistant-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ msg_info "Installing Docker $DOCKER_LATEST_VERSION"
3838
DOCKER_CONFIG_PATH='/etc/docker/daemon.json'
3939
mkdir -p $(dirname $DOCKER_CONFIG_PATH)
4040
echo -e '{\n "log-driver": "journald"\n}' >/etc/docker/daemon.json
41-
$STD sh <(curl -fsSLSL https://get.docker.com)
41+
$STD sh <(curl -fsSL https://get.docker.com)
4242
msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
4343

4444
msg_info "Pulling Portainer $PORTAINER_LATEST_VERSION Image"

install/kimai-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $STD apt-get install -y \
2525
msg_ok "Installed Dependencies"
2626

2727
msg_info "Setup PHP8.4 Repository"
28-
$STD curl -fsSLSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb
28+
$STD curl -fsSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb
2929
$STD dpkg -i /tmp/debsuryorg-archive-keyring.deb
3030
$STD sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
3131
$STD apt-get update

install/koillection-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $STD apt-get install -y \
2121
msg_ok "Installed Dependencies"
2222

2323
msg_info "Setup PHP8.4 Repository"
24-
$STD curl -fsSLSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb
24+
$STD curl -fsSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb
2525
$STD dpkg -i /tmp/debsuryorg-archive-keyring.deb
2626
$STD sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
2727
$STD apt-get update

install/npmplus-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ get_latest_release() {
3131
DOCKER_COMPOSE_LATEST_VERSION=$(get_latest_release "docker/compose")
3232
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
3333
mkdir -p $DOCKER_CONFIG/cli-plugins
34-
curl -fsSLSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
34+
curl -fsSL https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_LATEST_VERSION/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
3535
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
3636
msg_ok "Installed Docker & Compose"
3737

0 commit comments

Comments
 (0)