This commit is contained in:
Darren 2023-10-18 13:03:06 +08:00 committed by GitHub
parent 4dbfa03077
commit 1cbd60e546
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 6 deletions

View file

@ -141,10 +141,9 @@ install_tools(){
apt_status=$? apt_status=$?
if [ $dnf_status -eq 0 ]; then if [ $dnf_status -eq 0 ]; then
for package in $tools_yum; do sudo dnf install -y $package > /dev/null; done
dnf install $tools_yum -y
elif [ $yum_status -eq 0 ]; then elif [ $yum_status -eq 0 ]; then
yum install epel $tools_yum -y for package in $tools_yum; do sudo yum install -y $package > /dev/null; done
elif [ $apt_status -eq 0 ]; then elif [ $apt_status -eq 0 ]; then
while fuser /var/lib/dpkg/lock >/dev/null 2>&1 ; do while fuser /var/lib/dpkg/lock >/dev/null 2>&1 ; do
echo "Waiting for other software managers to finish..." echo "Waiting for other software managers to finish..."

View file

@ -24,7 +24,9 @@ export PATH
# #
# $ sudo sh install_docker.sh # $ sudo sh install_docker.sh
docker_packages="docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin"
# it must export, otherwise Rocky Linux cannot used at yum command
export docker_packages="docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin"
echo_prefix_docker=$'\n[Docker] - ' echo_prefix_docker=$'\n[Docker] - '
docker_exist() { docker_exist() {

View file

@ -14,3 +14,9 @@ sudo systemctl daemon-reload
sudo systemctl enable websoft9.service sudo systemctl enable websoft9.service
sudo systemctl start websoft9 sudo systemctl start websoft9
``` ```
## Develop it
* [systemd.exec — Execution environment configuration](https://www.freedesktop.org/software/systemd/man/systemd.exec.html)
* [systemd.unit — Unit configuration](https://www.freedesktop.org/software/systemd/man/systemd.unit.html)
* [systemd.service — Service unit configuration](https://www.freedesktop.org/software/systemd/man/systemd.service.html)

View file

@ -1,5 +1,5 @@
{ {
"version": "0.8.26-rc60", "version": "0.8.26-rc61",
"plugins": { "plugins": {
"portainer": "0.0.7", "portainer": "0.0.7",
"nginx": "0.0.5", "nginx": "0.0.5",