Skip to content

Commit

Permalink
add fix for 3.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
oehrlis committed Jan 18, 2024
1 parent b2231e7 commit a7345be
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [3.0.15] - 2024-01-18

### Changed

- Add command to remove wrong bash completion for docker-compose in *guacamole_init.template.sh*
- Add installation for docker-ce-cli, containerd.io, docker-buildx-plugin and docker-compose-plugin in bastion_host_ol7.yaml
- Add installation for docker-ce-cli, containerd.io, docker-buildx-plugin and docker-compose-plugin in bastion_host_ol8.yaml

## [3.0.14] - 2023-04-24

### Changed
Expand Down
2 changes: 1 addition & 1 deletion cloudinit/bastion_host_ol7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ runcmd:
# configure tools from development repositories
- yum-config-manager --enable ol7_developer --enable ol7_developer_EPEL
- yum-config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
- yum install -y pwgen fail2ban docker-ce
- yum install -y pwgen fail2ban docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

# configure automatic download / updates
- yum install -y yum-cron
Expand Down
2 changes: 1 addition & 1 deletion cloudinit/bastion_host_ol8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ runcmd:
# configure tools from development repositories
- dnf config-manager --set-enabled ol8_developer --set-enabled ol8_developer_EPEL
- dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
- dnf install -y pwgen fail2ban docker-ce
- dnf install -y pwgen fail2ban docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

# configure automatic download / updates
- dnf install -y dnf-automatic
Expand Down
3 changes: 3 additions & 0 deletions scripts/guacamole_init.template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ if ! command -v docker-compose &> /dev/null; then
docker-compose --version
fi

# remove wrong basch completion for docker-compose
rm -vf /etc/bash_completion.d/docker-compose

# fix permisions
echo "INFO: Change permissions for /home/$GUACAMOLE_USER to $GUACAMOLE_USER"
chown -R $GUACAMOLE_USER:$GUACAMOLE_USER /home/$GUACAMOLE_USER
Expand Down

0 comments on commit a7345be

Please sign in to comment.