Skip to content

Commit 3842a9d

Browse files
committed
fix
1 parent 41c258b commit 3842a9d

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

Github/Runners/alpine-builder.dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -724,11 +724,14 @@ EOS
724724
##Addons
725725
RUN <<EOS
726726
set +e
727+
#askalono for Licenses
728+
wget --quiet --show-progress "https://bin.pkgforge.dev/$(uname -m)/askalono" -o "/usr/bin/askalono"
729+
sudo chmod +x "/usr/bin/askalono"
727730
#Dockerc
728-
wget --quiet --show-progress "https://bin.ajam.dev/$(uname -m)/dockerc" -o "/usr/bin/dockerc"
731+
wget --quiet --show-progress "https://bin.pkgforge.dev/$(uname -m)/dockerc" -o "/usr/bin/dockerc"
729732
sudo chmod +x "/usr/bin/dockerc"
730733
#Eget for simplified releases
731-
wget --quiet --show-progress "https://bin.ajam.dev/$(uname -m)/eget" -O "/usr/bin/eget"
734+
wget --quiet --show-progress "https://bin.pkgforge.dev/$(uname -m)/eget" -O "/usr/bin/eget"
732735
chmod +xwr "/usr/bin/eget"
733736
#Golang
734737
#pushd "$(mktemp -d)" >/dev/null 2>&1 && echo "yes" | bash <(curl -qfsSL "https://git.io/go-installer") && popd >/dev/null 2>&1
@@ -738,7 +741,7 @@ RUN <<EOS
738741
echo "yes" | bash "./install.sh"
739742
cd - >/dev/null 2>&1
740743
#Micro
741-
wget --quiet --show-progress "https://bin.ajam.dev/$(uname -m)/micro" -O "/usr/bin/micro"
744+
wget --quiet --show-progress "https://bin.pkgforge.dev/$(uname -m)/micro" -O "/usr/bin/micro"
742745
chmod +xwr "/usr/bin/micro"
743746
#musl-gcc wrapper
744747
ln --symbolic "/usr/bin/$(uname -m)-alpine-linux-musl-gcc" "/usr/local/bin/musl-gcc" 2>/dev/null
@@ -753,4 +756,4 @@ RUN <<EOS
753756
ln --symbolic --force "/etc/bash.bashrc" "/etc/bash/bashrc" 2>/dev/null
754757
EOS
755758
#------------------------------------------------------------------------------------#
756-
#END
759+
#END

Linux/DAGU_CRON.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DAGU_BASICAUTH_PASSWORD="$SECURE_PASSWORD"
2020
- #### SystemD
2121
```bash
2222
##--Systemd--##
23-
sudo curl -qfsSL "https://bin.ajam.dev/$(uname -m)/dagu" -o "/usr/bin/dagu" && sudo chmod +x "/usr/bin/dagu"
23+
sudo curl -qfsSL "https://bin.pkgforge.dev/$(uname -m)/dagu" -o "/usr/bin/dagu" && sudo chmod +x "/usr/bin/dagu"
2424
sudo mkdir -p "/etc/systemd/system/" && sudo touch "/etc/systemd/system/dagu_ts.service"
2525
cat << EOF | sed -e "s|DG_USER|$DAGU_USER|" -e "s|DG_HOME|$DAGU_HOME|" -e "s|DG_HOST|$DAGU_HOST|" -e "s|DG_PORT|$DAGU_PORT|" -e "s|DG_SUSER|$DAGU_BASICAUTH_USERNAME|" -e "s|DG_SPASSWD|$DAGU_BASICAUTH_PASSWORD|" | sudo tee "/etc/systemd/system/dagu_ts.service"
2626
[Unit]

Linux/install_node_x86_64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if ! command -v node > /dev/null 2>&1 || ! command -v npm > /dev/null ; then
1414
cd "$(find . -maxdepth 1 -type d -exec basename {} \; | grep -Ev '^\.$' | xargs -I {} realpath {})"
1515
#Copy to /usr/* && /usr/local/*
1616
if ! command -v rsync > /dev/null 2>&1 ; then
17-
sudo curl -qfsSL "https://bin.ajam.dev/$(uname -m)/rsync" -o "/usr/local/bin/rsync" && sudo chmod +x "/usr/local/bin/rsync"
17+
sudo curl -qfsSL "https://bin.pkgforge.dev/$(uname -m)/rsync" -o "/usr/local/bin/rsync" && sudo chmod +x "/usr/local/bin/rsync"
1818
fi
1919
sudo rsync --archive --checksum --human-readable --progress --quiet "./bin/" "/usr/bin/"
2020
sudo rsync --archive --checksum --human-readable --progress --quiet "./bin/" "/usr/local/bin/"

0 commit comments

Comments
 (0)