mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2024-11-07 08:44:07 +01:00
KASM-6388
Remove EOL images
This commit is contained in:
parent
b328375581
commit
76f989f020
@ -454,32 +454,6 @@ multiImages:
|
|||||||
- src/ubuntu/install/ansible/**
|
- src/ubuntu/install/ansible/**
|
||||||
- src/ubuntu/install/chrome/**
|
- src/ubuntu/install/chrome/**
|
||||||
- src/ubuntu/install/slack/**
|
- src/ubuntu/install/slack/**
|
||||||
- name: fedora-37-desktop
|
|
||||||
singleapp: false
|
|
||||||
base: core-fedora-37
|
|
||||||
dockerfile: dockerfile-kasm-fedora-37-desktop
|
|
||||||
changeFiles:
|
|
||||||
- dockerfile-kasm-fedora-37-desktop
|
|
||||||
- src/oracle/install/**
|
|
||||||
- src/ubuntu/install/thunderbird/**
|
|
||||||
- src/ubuntu/install/remmina/**
|
|
||||||
- src/ubuntu/install/firefox/**
|
|
||||||
- src/ubuntu/install/cleanup/**
|
|
||||||
- src/ubuntu/install/chromium/**
|
|
||||||
- src/ubuntu/install/slack/**
|
|
||||||
- name: fedora-38-desktop
|
|
||||||
singleapp: false
|
|
||||||
base: core-fedora-38
|
|
||||||
dockerfile: dockerfile-kasm-fedora-38-desktop
|
|
||||||
changeFiles:
|
|
||||||
- dockerfile-kasm-fedora-38-desktop
|
|
||||||
- src/oracle/install/**
|
|
||||||
- src/ubuntu/install/thunderbird/**
|
|
||||||
- src/ubuntu/install/remmina/**
|
|
||||||
- src/ubuntu/install/firefox/**
|
|
||||||
- src/ubuntu/install/cleanup/**
|
|
||||||
- src/ubuntu/install/chromium/**
|
|
||||||
- src/ubuntu/install/slack/**
|
|
||||||
- name: fedora-39-desktop
|
- name: fedora-39-desktop
|
||||||
singleapp: false
|
singleapp: false
|
||||||
base: core-fedora-39
|
base: core-fedora-39
|
||||||
@ -697,16 +671,6 @@ singleImages:
|
|||||||
changeFiles:
|
changeFiles:
|
||||||
- dockerfile-kasm-blender
|
- dockerfile-kasm-blender
|
||||||
- src/ubuntu/install/blender/**
|
- src/ubuntu/install/blender/**
|
||||||
- name: centos-7-desktop
|
|
||||||
singleapp: false
|
|
||||||
base: core-centos-7
|
|
||||||
dockerfile: dockerfile-kasm-centos-7-desktop
|
|
||||||
changeFiles:
|
|
||||||
- dockerfile-kasm-centos-7-desktop
|
|
||||||
- src/ubuntu/install/thunderbird/**
|
|
||||||
- src/ubuntu/install/firefox/**
|
|
||||||
- src/ubuntu/install/cleanup/**
|
|
||||||
- src/ubuntu/install/chrome/**
|
|
||||||
- name: chrome
|
- name: chrome
|
||||||
singleapp: true
|
singleapp: true
|
||||||
base: core-ubuntu-focal
|
base: core-ubuntu-focal
|
||||||
@ -784,18 +748,6 @@ singleImages:
|
|||||||
dockerfile: dockerfile-kasm-only-office
|
dockerfile: dockerfile-kasm-only-office
|
||||||
changeFiles:
|
changeFiles:
|
||||||
- dockerfile-kasm-only-office
|
- dockerfile-kasm-only-office
|
||||||
- name: oracle-7-desktop
|
|
||||||
singleapp: false
|
|
||||||
base: core-oracle-7
|
|
||||||
dockerfile: dockerfile-kasm-oracle-7-desktop
|
|
||||||
changeFiles:
|
|
||||||
- dockerfile-kasm-oracle-7-desktop
|
|
||||||
- src/oracle/install/**
|
|
||||||
- src/ubuntu/install/thunderbird/**
|
|
||||||
- src/ubuntu/install/remmina/**
|
|
||||||
- src/ubuntu/install/firefox/**
|
|
||||||
- src/ubuntu/install/cleanup/**
|
|
||||||
- src/ubuntu/install/chrome/**
|
|
||||||
- name: kasmos-desktop
|
- name: kasmos-desktop
|
||||||
singleapp: false
|
singleapp: false
|
||||||
base: core-kasmos
|
base: core-kasmos
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
ARG BASE_TAG="develop"
|
|
||||||
ARG BASE_IMAGE="core-centos-7"
|
|
||||||
FROM kasmweb/$BASE_IMAGE:$BASE_TAG
|
|
||||||
USER root
|
|
||||||
|
|
||||||
ENV DISTRO=centos
|
|
||||||
ENV HOME /home/kasm-default-profile
|
|
||||||
ENV STARTUPDIR /dockerstartup
|
|
||||||
ENV INST_SCRIPTS $STARTUPDIR/install
|
|
||||||
WORKDIR $HOME
|
|
||||||
|
|
||||||
### Envrionment config
|
|
||||||
ENV SKIP_CLEAN=true \
|
|
||||||
KASM_RX_HOME=$STARTUPDIR/kasmrx \
|
|
||||||
INST_DIR=$STARTUPDIR/install \
|
|
||||||
INST_SCRIPTS="/ubuntu/install/misc/install_tools.sh \
|
|
||||||
/ubuntu/install/chrome/install_chrome.sh \
|
|
||||||
/ubuntu/install/firefox/install_firefox.sh \
|
|
||||||
/ubuntu/install/thunderbird/install_thunderbird.sh \
|
|
||||||
/ubuntu/install/cleanup/cleanup.sh"
|
|
||||||
|
|
||||||
# Copy install scripts
|
|
||||||
COPY ./src/ $INST_DIR
|
|
||||||
|
|
||||||
# Run installations
|
|
||||||
RUN \
|
|
||||||
for SCRIPT in $INST_SCRIPTS; do \
|
|
||||||
bash ${INST_DIR}${SCRIPT} || exit 1; \
|
|
||||||
done && \
|
|
||||||
$STARTUPDIR/set_user_permission.sh $HOME && \
|
|
||||||
rm -f /etc/X11/xinit/Xclients && \
|
|
||||||
chown 1000:0 $HOME && \
|
|
||||||
mkdir -p /home/kasm-user && \
|
|
||||||
chown -R 1000:0 /home/kasm-user && \
|
|
||||||
rm -Rf ${INST_DIR}
|
|
||||||
|
|
||||||
# Userspace Runtime
|
|
||||||
ENV HOME /home/kasm-user
|
|
||||||
WORKDIR $HOME
|
|
||||||
USER 1000
|
|
||||||
|
|
||||||
CMD ["--tail-log"]
|
|
@ -1,53 +0,0 @@
|
|||||||
ARG BASE_TAG="develop"
|
|
||||||
ARG BASE_IMAGE="core-fedora-37"
|
|
||||||
FROM kasmweb/$BASE_IMAGE:$BASE_TAG
|
|
||||||
|
|
||||||
USER root
|
|
||||||
|
|
||||||
ENV DISTRO=fedora37
|
|
||||||
ENV HOME /home/kasm-default-profile
|
|
||||||
ENV STARTUPDIR /dockerstartup
|
|
||||||
WORKDIR $HOME
|
|
||||||
|
|
||||||
### Envrionment config
|
|
||||||
ENV SKIP_CLEAN=true \
|
|
||||||
KASM_RX_HOME=$STARTUPDIR/kasmrx \
|
|
||||||
DONT_PROMPT_WSL_INSTALL="No_Prompt_please" \
|
|
||||||
INST_DIR=$STARTUPDIR/install \
|
|
||||||
INST_SCRIPTS="/oracle/install/tools/install_tools_deluxe.sh \
|
|
||||||
/oracle/install/misc/install_tools.sh \
|
|
||||||
/ubuntu/install/chromium/install_chromium.sh \
|
|
||||||
/ubuntu/install/firefox/install_firefox.sh \
|
|
||||||
/oracle/install/sublime_text/install_sublime_text.sh \
|
|
||||||
/oracle/install/vs_code/install_vs_code.sh \
|
|
||||||
/ubuntu/install/remmina/install_remmina.sh \
|
|
||||||
/oracle/install/only_office/install_only_office.sh \
|
|
||||||
/oracle/install/gimp/install_gimp.sh \
|
|
||||||
/oracle/install/zoom/install_zoom.sh \
|
|
||||||
/oracle/install/ansible/install_ansible.sh \
|
|
||||||
/oracle/install/telegram/install_telegram.sh \
|
|
||||||
/ubuntu/install/thunderbird/install_thunderbird.sh \
|
|
||||||
/ubuntu/install/slack/install_slack.sh \
|
|
||||||
/ubuntu/install/cleanup/cleanup.sh"
|
|
||||||
|
|
||||||
# Copy install scripts
|
|
||||||
COPY ./src/ $INST_DIR
|
|
||||||
|
|
||||||
# Run installations
|
|
||||||
RUN \
|
|
||||||
for SCRIPT in $INST_SCRIPTS; do \
|
|
||||||
bash ${INST_DIR}${SCRIPT} || exit 1; \
|
|
||||||
done && \
|
|
||||||
$STARTUPDIR/set_user_permission.sh $HOME && \
|
|
||||||
rm -f /etc/X11/xinit/Xclients && \
|
|
||||||
chown 1000:0 $HOME && \
|
|
||||||
mkdir -p /home/kasm-user && \
|
|
||||||
chown -R 1000:0 /home/kasm-user && \
|
|
||||||
rm -Rf ${INST_DIR}
|
|
||||||
|
|
||||||
# Userspace Runtime
|
|
||||||
ENV HOME /home/kasm-user
|
|
||||||
WORKDIR $HOME
|
|
||||||
USER 1000
|
|
||||||
|
|
||||||
CMD ["--tail-log"]
|
|
@ -1,54 +0,0 @@
|
|||||||
ARG BASE_TAG="develop"
|
|
||||||
ARG BASE_IMAGE="core-fedora-38"
|
|
||||||
FROM kasmweb/$BASE_IMAGE:$BASE_TAG
|
|
||||||
|
|
||||||
USER root
|
|
||||||
|
|
||||||
ENV DISTRO=fedora38
|
|
||||||
ENV HOME /home/kasm-default-profile
|
|
||||||
ENV STARTUPDIR /dockerstartup
|
|
||||||
WORKDIR $HOME
|
|
||||||
|
|
||||||
### Envrionment config
|
|
||||||
ENV SKIP_CLEAN=true \
|
|
||||||
KASM_RX_HOME=$STARTUPDIR/kasmrx \
|
|
||||||
DONT_PROMPT_WSL_INSTALL="No_Prompt_please" \
|
|
||||||
INST_DIR=$STARTUPDIR/install \
|
|
||||||
INST_SCRIPTS="/oracle/install/tools/install_tools_deluxe.sh \
|
|
||||||
/oracle/install/misc/install_tools.sh \
|
|
||||||
/ubuntu/install/chromium/install_chromium.sh \
|
|
||||||
/ubuntu/install/firefox/install_firefox.sh \
|
|
||||||
/oracle/install/sublime_text/install_sublime_text.sh \
|
|
||||||
/oracle/install/vs_code/install_vs_code.sh \
|
|
||||||
/ubuntu/install/remmina/install_remmina.sh \
|
|
||||||
/oracle/install/only_office/install_only_office.sh \
|
|
||||||
/oracle/install/gimp/install_gimp.sh \
|
|
||||||
/oracle/install/zoom/install_zoom.sh \
|
|
||||||
/oracle/install/ansible/install_ansible.sh \
|
|
||||||
/oracle/install/terraform/install_terraform.sh \
|
|
||||||
/oracle/install/telegram/install_telegram.sh \
|
|
||||||
/ubuntu/install/thunderbird/install_thunderbird.sh \
|
|
||||||
/ubuntu/install/slack/install_slack.sh \
|
|
||||||
/ubuntu/install/cleanup/cleanup.sh"
|
|
||||||
|
|
||||||
# Copy install scripts
|
|
||||||
COPY ./src/ $INST_DIR
|
|
||||||
|
|
||||||
# Run installations
|
|
||||||
RUN \
|
|
||||||
for SCRIPT in $INST_SCRIPTS; do \
|
|
||||||
bash ${INST_DIR}${SCRIPT} || exit 1; \
|
|
||||||
done && \
|
|
||||||
$STARTUPDIR/set_user_permission.sh $HOME && \
|
|
||||||
rm -f /etc/X11/xinit/Xclients && \
|
|
||||||
chown 1000:0 $HOME && \
|
|
||||||
mkdir -p /home/kasm-user && \
|
|
||||||
chown -R 1000:0 /home/kasm-user && \
|
|
||||||
rm -Rf ${INST_DIR}
|
|
||||||
|
|
||||||
# Userspace Runtime
|
|
||||||
ENV HOME /home/kasm-user
|
|
||||||
WORKDIR $HOME
|
|
||||||
USER 1000
|
|
||||||
|
|
||||||
CMD ["--tail-log"]
|
|
@ -1,52 +0,0 @@
|
|||||||
ARG BASE_TAG="develop"
|
|
||||||
ARG BASE_IMAGE="core-oracle-7"
|
|
||||||
FROM kasmweb/$BASE_IMAGE:$BASE_TAG
|
|
||||||
|
|
||||||
USER root
|
|
||||||
|
|
||||||
ENV DISTRO=centos
|
|
||||||
ENV HOME /home/kasm-default-profile
|
|
||||||
ENV STARTUPDIR /dockerstartup
|
|
||||||
WORKDIR $HOME
|
|
||||||
|
|
||||||
### Envrionment config
|
|
||||||
ENV SKIP_CLEAN=true \
|
|
||||||
KASM_RX_HOME=$STARTUPDIR/kasmrx \
|
|
||||||
DONT_PROMPT_WSL_INSTALL="No_Prompt_please" \
|
|
||||||
INST_DIR=$STARTUPDIR/install \
|
|
||||||
INST_SCRIPTS="/oracle/install/tools/install_tools_deluxe.sh \
|
|
||||||
/oracle/install/misc/install_tools.sh \
|
|
||||||
/ubuntu/install/chrome/install_chrome.sh \
|
|
||||||
/ubuntu/install/firefox/install_firefox.sh \
|
|
||||||
/oracle/install/sublime_text/install_sublime_text.sh \
|
|
||||||
/oracle/install/vs_code/install_vs_code.sh \
|
|
||||||
/ubuntu/install/remmina/install_remmina.sh \
|
|
||||||
/oracle/install/only_office/install_only_office.sh \
|
|
||||||
/oracle/install/gimp/install_gimp.sh \
|
|
||||||
/oracle/install/zoom/install_zoom.sh \
|
|
||||||
/oracle/install/ansible/install_ansible.sh \
|
|
||||||
/oracle/install/telegram/install_telegram.sh \
|
|
||||||
/ubuntu/install/thunderbird/install_thunderbird.sh \
|
|
||||||
/ubuntu/install/cleanup/cleanup.sh"
|
|
||||||
|
|
||||||
# Copy install scripts
|
|
||||||
COPY ./src/ $INST_DIR
|
|
||||||
|
|
||||||
# Run installations
|
|
||||||
RUN \
|
|
||||||
for SCRIPT in $INST_SCRIPTS; do \
|
|
||||||
bash ${INST_DIR}${SCRIPT} || exit 1; \
|
|
||||||
done && \
|
|
||||||
$STARTUPDIR/set_user_permission.sh $HOME && \
|
|
||||||
rm -f /etc/X11/xinit/Xclients && \
|
|
||||||
chown 1000:0 $HOME && \
|
|
||||||
mkdir -p /home/kasm-user && \
|
|
||||||
chown -R 1000:0 /home/kasm-user && \
|
|
||||||
rm -Rf ${INST_DIR}
|
|
||||||
|
|
||||||
# Userspace Runtime
|
|
||||||
ENV HOME /home/kasm-user
|
|
||||||
WORKDIR $HOME
|
|
||||||
USER 1000
|
|
||||||
|
|
||||||
CMD ["--tail-log"]
|
|
@ -1,7 +0,0 @@
|
|||||||
# About This Image
|
|
||||||
|
|
||||||
This Image contains a browser-accessible CentOS 7 XFCE Desktop with Chrome and Firefox installed..
|
|
||||||
|
|
||||||
![Screenshot][Image_Screenshot]
|
|
||||||
|
|
||||||
[Image_Screenshot]: https://f.hubspotusercontent30.net/hubfs/5856039/dockerhub/image-screenshots/centos-7-desktop.png "Image Screenshot"
|
|
@ -1,9 +0,0 @@
|
|||||||
# Live Demo
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/1432560159" target="_blank"><img src="https://info.kasmweb.com/hubfs/dockerhub/GIFs/centos-7-desktop.gif" width="640" height="360"></a>
|
|
||||||
|
|
||||||
**Launch a real-time demo in a new browser window:** <a href="https://app.kasmweb.com/#/cast/1432560159" target="_blank">Live Demo</a>.
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/1432560159" target="_blank"><img src="https://5856039.fs1.hubspotusercontent-na1.net/hub/5856039/hubfs/dockerhub/casting-buttons/CENTOS7.png" width="300" height="104"></a>
|
|
||||||
|
|
||||||
∗*Note: Demo is limited to 3 minutes and has upload/downloads restricted for security purposes.*
|
|
@ -1 +0,0 @@
|
|||||||
CentOS 7 desktop for Kasm Workspaces
|
|
@ -1,6 +1,6 @@
|
|||||||
# About This Image
|
# About This Image
|
||||||
|
|
||||||
This Image contains a browser-accessible Ubuntu Bionic Desktop with various productivity and development apps installed.
|
This Image contains a browser-accessible Ubuntu Focal Desktop with various productivity and development apps installed.
|
||||||
|
|
||||||
![Screenshot][Image_Screenshot]
|
![Screenshot][Image_Screenshot]
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# About This Image
|
# About This Image
|
||||||
|
|
||||||
This Image contains a browser-accessible Ubuntu Bionic Desktop with Chrome and Firefox installed.
|
This Image contains a browser-accessible Ubuntu Focal Desktop with Chrome and Firefox installed.
|
||||||
|
|
||||||
![Screenshot][Image_Screenshot]
|
![Screenshot][Image_Screenshot]
|
||||||
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
# About This Image
|
|
||||||
|
|
||||||
This Image contains a browser-accessible Fedora 37 Desktop with various productivity and development apps installed.
|
|
||||||
|
|
||||||
![Screenshot][Image_Screenshot]
|
|
||||||
|
|
||||||
[Image_Screenshot]: https://info.kasmweb.com/hubfs/dockerhub/image-screenshots/fedora-37-desktop.png "Image Screenshot"
|
|
@ -1,9 +0,0 @@
|
|||||||
# Live Demo
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/6708319219" target="_blank"><img src="https://info.kasmweb.com/hubfs/dockerhub/GIFs/ubuntu-jammy-desktop.gif" width="640" height="360"></a>
|
|
||||||
|
|
||||||
**Launch a real-time demo in a new browser window:** <a href="https://app.kasmweb.com/#/cast/6708319219" target="_blank">Live Demo</a>.
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/6708319219" target="_blank"><img src="https://5856039.fs1.hubspotusercontent-na1.net/hub/5856039/hubfs/dockerhub/casting-buttons/UbuntuJammyDesktop.png" width="300" height="104"></a>
|
|
||||||
|
|
||||||
∗*Note: Demo is limited to 3 minutes and has upload/downloads restricted for security purposes.*
|
|
@ -1 +0,0 @@
|
|||||||
Fedora 37 desktop for Kasm Workspaces
|
|
@ -1,7 +0,0 @@
|
|||||||
# About This Image
|
|
||||||
|
|
||||||
This Image contains a browser-accessible Fedora 38 Desktop with various productivity and development apps installed.
|
|
||||||
|
|
||||||
![Screenshot][Image_Screenshot]
|
|
||||||
|
|
||||||
[Image_Screenshot]: https://info.kasmweb.com/hubfs/dockerhub/image-screenshots/fedora-37-desktop.png "Image Screenshot"
|
|
@ -1,9 +0,0 @@
|
|||||||
# Live Demo
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/6708319219" target="_blank"><img src="https://info.kasmweb.com/hubfs/dockerhub/GIFs/ubuntu-jammy-desktop.gif" width="640" height="360"></a>
|
|
||||||
|
|
||||||
**Launch a real-time demo in a new browser window:** <a href="https://app.kasmweb.com/#/cast/6708319219" target="_blank">Live Demo</a>.
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/6708319219" target="_blank"><img src="https://5856039.fs1.hubspotusercontent-na1.net/hub/5856039/hubfs/dockerhub/casting-buttons/UbuntuJammyDesktop.png" width="300" height="104"></a>
|
|
||||||
|
|
||||||
∗*Note: Demo is limited to 3 minutes and has upload/downloads restricted for security purposes.*
|
|
@ -1 +0,0 @@
|
|||||||
Fedora 38 desktop for Kasm Workspaces
|
|
@ -1,6 +1,6 @@
|
|||||||
# About This Image
|
# About This Image
|
||||||
|
|
||||||
This Image contains a browser-accessible Ubuntu Bionic Desktop with a Java development environment.
|
This Image contains a browser-accessible Ubuntu Focal Desktop with a Java development environment.
|
||||||
|
|
||||||
![Screenshot][Image_Screenshot]
|
![Screenshot][Image_Screenshot]
|
||||||
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
# About This Image
|
|
||||||
|
|
||||||
This Image contains a browser-accessible Oracle Linux 7 Desktop with various productivity and development apps installed.
|
|
||||||
|
|
||||||
![Screenshot][Image_Screenshot]
|
|
||||||
|
|
||||||
[Image_Screenshot]: https://5856039.fs1.hubspotusercontent-na1.net/hubfs/5856039/dockerhub/oracle-7-desktop.png "Image Screenshot"
|
|
@ -1,11 +0,0 @@
|
|||||||
# Live Demo
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/8652257120" target="_blank"><img src="https://info.kasmweb.com/hubfs/dockerhub/GIFs/oracle-7-desktop.gif" width="640" height="360"></a>
|
|
||||||
|
|
||||||
**Launch a real-time demo in a new browser window:** <a href="https://app.kasmweb.com/#/cast/8652257120" target="_blank">Live Demo</a>.
|
|
||||||
|
|
||||||
<a href="https://app.kasmweb.com/#/cast/8652257120" target="_blank"><img src="https://5856039.fs1.hubspotusercontent-na1.net/hub/5856039/hubfs/dockerhub/casting-buttons/OracleLinux7.png" width="300" height="104"></a>
|
|
||||||
|
|
||||||
∗*This demo is linked to Oracle Linux 8*
|
|
||||||
|
|
||||||
∗*Note: Demo is limited to 3 minutes and has upload/downloads restricted for security purposes.*
|
|
@ -1 +0,0 @@
|
|||||||
Oracle Linux 7 desktop for Kasm Workspaces
|
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf install -y ansible
|
dnf install -y ansible
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -ex
|
set -ex
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf install -y gimp
|
dnf install -y gimp
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
|
@ -7,7 +7,7 @@ if [ "$ARCH" == "amd64" ] ; then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf install -y \
|
dnf install -y \
|
||||||
libreoffice-core \
|
libreoffice-core \
|
||||||
libreoffice-writer \
|
libreoffice-writer \
|
||||||
|
@ -8,7 +8,7 @@ if [ "$ARCH" == "arm64" ] ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
curl -L -o only_office.rpm "https://download.onlyoffice.com/install/desktop/editors/linux/onlyoffice-desktopeditors.$(arch).rpm"
|
curl -L -o only_office.rpm "https://download.onlyoffice.com/install/desktop/editors/linux/onlyoffice-desktopeditors.$(arch).rpm"
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf localinstall -y only_office.rpm
|
dnf localinstall -y only_office.rpm
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
|
@ -21,7 +21,7 @@ version=4.12.2
|
|||||||
|
|
||||||
# This path may not be accurate once arm64 support arrives. Specifically I don't know if it will still be under x64
|
# This path may not be accurate once arm64 support arrives. Specifically I don't know if it will still be under x64
|
||||||
wget -q https://downloads.slack-edge.com/releases/linux/${version}/prod/x64/slack-${version}-0.1.fc21.x86_64.rpm -O slack.rpm
|
wget -q https://downloads.slack-edge.com/releases/linux/${version}/prod/x64/slack-${version}-0.1.fc21.x86_64.rpm -O slack.rpm
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf localinstall -y slack.rpm
|
dnf localinstall -y slack.rpm
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
|
@ -8,7 +8,7 @@ fi
|
|||||||
|
|
||||||
rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg
|
rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/$(arch)/sublime-text.repo
|
dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/$(arch)/sublime-text.repo
|
||||||
dnf install -y sublime-text
|
dnf install -y sublime-text
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
|
@ -14,7 +14,7 @@ if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almali
|
|||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
fi
|
fi
|
||||||
elif [[ "${DISTRO}" == @(fedora37|fedora38|fedora39|fedora40) ]]; then
|
elif [[ "${DISTRO}" == @(fedora39|fedora40) ]]; then
|
||||||
dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo
|
dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo
|
||||||
dnf install -y terraform
|
dnf install -y terraform
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
|
@ -3,7 +3,7 @@ set -ex
|
|||||||
ARCH=$(arch | sed 's/aarch64/arm64/g' | sed 's/x86_64/x64/g')
|
ARCH=$(arch | sed 's/aarch64/arm64/g' | sed 's/x86_64/x64/g')
|
||||||
|
|
||||||
wget -q https://update.code.visualstudio.com/latest/linux-rpm-${ARCH}/stable -O vs_code.rpm
|
wget -q https://update.code.visualstudio.com/latest/linux-rpm-${ARCH}/stable -O vs_code.rpm
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
wget -q https://update.code.visualstudio.com/latest/linux-rpm-${ARCH}/stable -O vs_code.rpm
|
wget -q https://update.code.visualstudio.com/latest/linux-rpm-${ARCH}/stable -O vs_code.rpm
|
||||||
dnf localinstall -y vs_code.rpm
|
dnf localinstall -y vs_code.rpm
|
||||||
else
|
else
|
||||||
@ -20,7 +20,7 @@ chown 1000:1000 $HOME/Desktop/code.desktop
|
|||||||
rm vs_code.rpm
|
rm vs_code.rpm
|
||||||
|
|
||||||
# Conveniences for python development
|
# Conveniences for python development
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf install -y python3-setuptools python3-virtualenv
|
dnf install -y python3-setuptools python3-virtualenv
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
|
@ -8,7 +8,7 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
wget -q https://zoom.us/client/latest/zoom_$(arch).rpm
|
wget -q https://zoom.us/client/latest/zoom_$(arch).rpm
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf localinstall -y zoom_$(arch).rpm
|
dnf localinstall -y zoom_$(arch).rpm
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
|
@ -9,17 +9,10 @@ if [[ "${DISTRO}" == @(debian|opensuse|ubuntu) ]] && [ ${ARCH} = 'amd64' ] && [
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
dnf install -y chromium
|
||||||
dnf install -y chromium
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
dnf clean all
|
||||||
dnf clean all
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
yum install -y chromium
|
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
|
||||||
yum clean all
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
elif [ "${DISTRO}" == "opensuse" ]; then
|
elif [ "${DISTRO}" == "opensuse" ]; then
|
||||||
zypper install -yn chromium
|
zypper install -yn chromium
|
||||||
@ -124,7 +117,7 @@ if [ "${DISTRO}" != "opensuse" ] && ! grep -q "ID=debian" /etc/os-release && ! g
|
|||||||
cp /usr/bin/chromium-browser /usr/bin/chromium
|
cp /usr/bin/chromium-browser /usr/bin/chromium
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora39|fedora40) ]]; then
|
||||||
cat >> $HOME/.config/mimeapps.list <<EOF
|
cat >> $HOME/.config/mimeapps.list <<EOF
|
||||||
[Default Applications]
|
[Default Applications]
|
||||||
x-scheme-handler/http=${REAL_BIN}.desktop
|
x-scheme-handler/http=${REAL_BIN}.desktop
|
||||||
|
@ -2,9 +2,7 @@
|
|||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
# Distro package cleanup
|
# Distro package cleanup
|
||||||
if [[ "${DISTRO}" == @(centos|oracle7) ]] ; then
|
if [[ "${DISTRO}" == @(almalinux8|almalinux9|fedora39|fedora40|oracle8|oracle9|rockylinux8|rockylinux9) ]]; then
|
||||||
yum clean all
|
|
||||||
elif [[ "${DISTRO}" == @(almalinux8|almalinux9|fedora37|fedora38|fedora39|fedora40|oracle8|oracle9|rockylinux8|rockylinux9) ]]; then
|
|
||||||
dnf clean all
|
dnf clean all
|
||||||
elif [ "${DISTRO}" == "opensuse" ]; then
|
elif [ "${DISTRO}" == "opensuse" ]; then
|
||||||
zypper clean --all
|
zypper clean --all
|
||||||
|
@ -13,12 +13,8 @@ set_desktop_icon() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
echo "Install Firefox"
|
echo "Install Firefox"
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
dnf install -y firefox p11-kit
|
||||||
dnf install -y firefox p11-kit
|
|
||||||
else
|
|
||||||
yum install -y firefox p11-kit
|
|
||||||
fi
|
|
||||||
elif [ "${DISTRO}" == "opensuse" ]; then
|
elif [ "${DISTRO}" == "opensuse" ]; then
|
||||||
zypper install -yn p11-kit-tools MozillaFirefox
|
zypper install -yn p11-kit-tools MozillaFirefox
|
||||||
elif grep -q Jammy /etc/os-release || grep -q Noble /etc/os-release; then
|
elif grep -q Jammy /etc/os-release || grep -q Noble /etc/os-release; then
|
||||||
@ -78,15 +74,9 @@ for LANG in ${LANGS}; do
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Cleanup and install flash if supported
|
# Cleanup and install flash if supported
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
dnf clean all
|
||||||
dnf clean all
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
|
||||||
yum clean all
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
elif [ "${DISTRO}" == "opensuse" ]; then
|
elif [ "${DISTRO}" == "opensuse" ]; then
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
@ -111,7 +101,7 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${DISTRO}" != @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" != @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora39|fedora40) ]]; then
|
||||||
# Update firefox to utilize the system certificate store instead of the one that ships with firefox
|
# Update firefox to utilize the system certificate store instead of the one that ships with firefox
|
||||||
if grep -q "bullseye" /etc/os-release; then
|
if grep -q "bullseye" /etc/os-release; then
|
||||||
rm -f /usr/lib/firefox-esr/libnssckbi.so
|
rm -f /usr/lib/firefox-esr/libnssckbi.so
|
||||||
@ -122,8 +112,8 @@ if [[ "${DISTRO}" != @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
if [[ "${DISTRO}" == @(fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(fedora39|fedora40) ]]; then
|
||||||
preferences_file=/usr/lib64/firefox/browser/defaults/preferences/firefox-redhat-default-prefs.js
|
preferences_file=/usr/lib64/firefox/browser/defaults/preferences/firefox-redhat-default-prefs.js
|
||||||
else
|
else
|
||||||
preferences_file=/usr/lib64/firefox/browser/defaults/preferences/all-redhat.js
|
preferences_file=/usr/lib64/firefox/browser/defaults/preferences/all-redhat.js
|
||||||
@ -138,7 +128,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Disabling default first run URL for Debian based images
|
# Disabling default first run URL for Debian based images
|
||||||
if [[ "${DISTRO}" != @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" != @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora39|fedora40) ]]; then
|
||||||
cat >"$preferences_file" <<EOF
|
cat >"$preferences_file" <<EOF
|
||||||
pref("datareporting.policy.firstRunURL", "");
|
pref("datareporting.policy.firstRunURL", "");
|
||||||
pref("datareporting.policy.dataSubmissionEnabled", false);
|
pref("datareporting.policy.dataSubmissionEnabled", false);
|
||||||
@ -149,7 +139,7 @@ pref("browser.aboutwelcome.enabled", false);
|
|||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora39|fedora40) ]]; then
|
||||||
# Creating a default profile
|
# Creating a default profile
|
||||||
chown -R root:root $HOME
|
chown -R root:root $HOME
|
||||||
firefox -headless -CreateProfile "kasm $HOME/.mozilla/firefox/kasm"
|
firefox -headless -CreateProfile "kasm $HOME/.mozilla/firefox/kasm"
|
||||||
@ -173,7 +163,7 @@ else
|
|||||||
firefox -headless -CreateProfile "kasm $HOME/.mozilla/firefox/kasm"
|
firefox -headless -CreateProfile "kasm $HOME/.mozilla/firefox/kasm"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora39|fedora40) ]]; then
|
||||||
set_desktop_icon
|
set_desktop_icon
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -181,13 +171,13 @@ fi
|
|||||||
# based off the installation path. Because that path will be static for our deployments we can assume the hash
|
# based off the installation path. Because that path will be static for our deployments we can assume the hash
|
||||||
# and thus assign our profile to the default for the installation
|
# and thus assign our profile to the default for the installation
|
||||||
|
|
||||||
if [[ "${DISTRO}" != @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" != @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora39|fedora40) ]]; then
|
||||||
cat >>$HOME/.mozilla/firefox/profiles.ini <<EOL
|
cat >>$HOME/.mozilla/firefox/profiles.ini <<EOL
|
||||||
[Install4F96D1932A9F858E]
|
[Install4F96D1932A9F858E]
|
||||||
Default=kasm
|
Default=kasm
|
||||||
Locked=1
|
Locked=1
|
||||||
EOL
|
EOL
|
||||||
elif [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora37|fedora38|fedora39|fedora40) ]]; then
|
elif [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|opensuse|fedora39|fedora40) ]]; then
|
||||||
cat >>$HOME/.mozilla/firefox/profiles.ini <<EOL
|
cat >>$HOME/.mozilla/firefox/profiles.ini <<EOL
|
||||||
[Install11457493C5A56847]
|
[Install11457493C5A56847]
|
||||||
Default=kasm
|
Default=kasm
|
||||||
|
@ -1,22 +1,17 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(centos|oracle7|oracle8|oracle9|rockylinux9|rockylinux8|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|oracle9|rockylinux9|rockylinux8|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux8|almalinux8) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux8|almalinux8) ]]; then
|
||||||
dnf install -y remmina remmina-plugins-rdp remmina-plugins-secret remmina-plugins-spice xdotool
|
dnf install -y remmina remmina-plugins-rdp remmina-plugins-secret remmina-plugins-spice xdotool
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
fi
|
fi
|
||||||
elif [[ "${DISTRO}" == @(rockylinux9|oracle9|almalinux9|fedora37|fedora38|fedora39|fedora40) ]]; then
|
elif [[ "${DISTRO}" == @(rockylinux9|oracle9|almalinux9|fedora39|fedora40) ]]; then
|
||||||
dnf install -y remmina remmina-plugins-rdp remmina-plugins-secret xdotool
|
dnf install -y remmina remmina-plugins-rdp remmina-plugins-secret xdotool
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
yum install -y remmina remmina-plugins-rdp remmina-plugins-secret remmina-plugins-spice xdotool
|
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
|
||||||
yum clean all
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
elif [ "${DISTRO}" == "opensuse" ]; then
|
elif [ "${DISTRO}" == "opensuse" ]; then
|
||||||
zypper install -yn remmina remmina-plugin-rdp remmina-plugin-secret remmina-plugin-spice xdotool
|
zypper install -yn remmina remmina-plugin-rdp remmina-plugin-secret remmina-plugin-spice xdotool
|
||||||
|
@ -12,11 +12,11 @@ version=$(curl -q https://slack.com/downloads/linux | grep page-downloads__hero_
|
|||||||
echo Detected slack version $version
|
echo Detected slack version $version
|
||||||
|
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40|opensuse) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40|opensuse) ]]; then
|
||||||
|
|
||||||
wget -q https://downloads.slack-edge.com/desktop-releases/linux/x64/${version}/slack-${version}-0.1.el8.x86_64.rpm
|
wget -q https://downloads.slack-edge.com/desktop-releases/linux/x64/${version}/slack-${version}-0.1.el8.x86_64.rpm
|
||||||
|
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
dnf localinstall -y slack-${version}-0.1.el8.x86_64.rpm
|
dnf localinstall -y slack-${version}-0.1.el8.x86_64.rpm
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
dnf clean all
|
dnf clean all
|
||||||
@ -28,11 +28,6 @@ if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9
|
|||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
zypper clean --all
|
zypper clean --all
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
yum localinstall -y slack-${version}-0.1.el8.x86_64.rpm
|
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
|
||||||
yum clean all
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm slack-${version}-0.1.el8.x86_64.rpm
|
rm slack-${version}-0.1.el8.x86_64.rpm
|
||||||
|
@ -2,17 +2,10 @@
|
|||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
# Install
|
# Install
|
||||||
if [[ "${DISTRO}" == @(centos|oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora39|fedora40) ]]; then
|
||||||
if [[ "${DISTRO}" == @(oracle8|rockylinux9|rockylinux8|oracle9|almalinux9|almalinux8|fedora37|fedora38|fedora39|fedora40) ]]; then
|
dnf install -y thunderbird
|
||||||
dnf install -y thunderbird
|
if [ -z ${SKIP_CLEAN+x} ]; then
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
dnf clean all
|
||||||
dnf clean all
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
yum install -y thunderbird
|
|
||||||
if [ -z ${SKIP_CLEAN+x} ]; then
|
|
||||||
yum clean all
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
elif [ "${DISTRO}" == "opensuse" ]; then
|
elif [ "${DISTRO}" == "opensuse" ]; then
|
||||||
zypper install -yn MozillaThunderbird
|
zypper install -yn MozillaThunderbird
|
||||||
@ -48,7 +41,7 @@ Pin-Priority: 1001
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Desktop icon
|
# Desktop icon
|
||||||
if [[ "${DISTRO}" == @(fedora37|fedora38|fedora39) ]]; then
|
if [[ "${DISTRO}" == "fedora39" ]]; then
|
||||||
cp /usr/share/applications/mozilla-thunderbird.desktop $HOME/Desktop/
|
cp /usr/share/applications/mozilla-thunderbird.desktop $HOME/Desktop/
|
||||||
chmod +x $HOME/Desktop/mozilla-thunderbird.desktop
|
chmod +x $HOME/Desktop/mozilla-thunderbird.desktop
|
||||||
elif [[ "${DISTRO}" == "fedora40" ]]; then
|
elif [[ "${DISTRO}" == "fedora40" ]]; then
|
||||||
|
@ -25,14 +25,7 @@ elif [[ "${DISTRO}" == @(oracle8|oracle9|rockylinux8|rockylinux9|almalinux8|alma
|
|||||||
openvpn \
|
openvpn \
|
||||||
wireguard-tools \
|
wireguard-tools \
|
||||||
jq
|
jq
|
||||||
elif [[ "${DISTRO}" == @(centos|oracle7) ]]; then
|
elif [[ "${DISTRO}" == @(fedora39|fedora40) ]] ; then
|
||||||
yum install -y epel-release
|
|
||||||
yum install -y \
|
|
||||||
openvpn \
|
|
||||||
wireguard-tools \
|
|
||||||
zenity \
|
|
||||||
jq
|
|
||||||
elif [[ "${DISTRO}" == @(fedora37|fedora38|fedora39|fedora40) ]] ; then
|
|
||||||
dnf install -y \
|
dnf install -y \
|
||||||
openresolv \
|
openresolv \
|
||||||
openvpn \
|
openvpn \
|
||||||
@ -54,26 +47,15 @@ ID=$(cat /etc/os-release | awk -F'=' '/^ID=/ {print $2}')
|
|||||||
VERSION=$(cat /etc/os-release | awk -F'"' '/^VERSION_ID=/ {print $2}')
|
VERSION=$(cat /etc/os-release | awk -F'"' '/^VERSION_ID=/ {print $2}')
|
||||||
VERSION2=$(cat /etc/os-release | awk -F'=' '/^VERSION_ID=/ {print $2}')
|
VERSION2=$(cat /etc/os-release | awk -F'=' '/^VERSION_ID=/ {print $2}')
|
||||||
if [[ "${FLAVOR}" ]]; then
|
if [[ "${FLAVOR}" ]]; then
|
||||||
if [[ "${FLAVOR}" == "bionic" ]]; then
|
FLAVOR=$(echo ${FLAVOR} | sed -e 's/ara/sid/g' -e 's/kali-rolling/sid/g')
|
||||||
curl -fsSL https://pkgs.tailscale.com/stable/${ID}/${FLAVOR}.asc | apt-key add -
|
ID=$(echo ${ID} | sed -e 's/kali/debian/g' -e 's/parrot/debian/g')
|
||||||
curl -fsSL https://pkgs.tailscale.com/stable/${ID}/${FLAVOR}.list | tee /etc/apt/sources.list.d/tailscale.list
|
mkdir -p --mode=0755 /usr/share/keyrings
|
||||||
apt-get update
|
curl -fsSL https://pkgs.tailscale.com/stable/${ID}/${FLAVOR}.noarmor.gpg | tee /usr/share/keyrings/tailscale-archive-keyring.gpg >/dev/null
|
||||||
apt-get install -y --no-install-recommends tailscale
|
curl -fsSL https://pkgs.tailscale.com/stable/${ID}/${FLAVOR}.tailscale-keyring.list | tee /etc/apt/sources.list.d/tailscale.list
|
||||||
else
|
apt-get update
|
||||||
FLAVOR=$(echo ${FLAVOR} | sed -e 's/ara/sid/g' -e 's/kali-rolling/sid/g')
|
apt-get install -y --no-install-recommends tailscale
|
||||||
ID=$(echo ${ID} | sed -e 's/kali/debian/g' -e 's/parrot/debian/g')
|
|
||||||
mkdir -p --mode=0755 /usr/share/keyrings
|
|
||||||
curl -fsSL https://pkgs.tailscale.com/stable/${ID}/${FLAVOR}.noarmor.gpg | tee /usr/share/keyrings/tailscale-archive-keyring.gpg >/dev/null
|
|
||||||
curl -fsSL https://pkgs.tailscale.com/stable/${ID}/${FLAVOR}.tailscale-keyring.list | tee /etc/apt/sources.list.d/tailscale.list
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y --no-install-recommends tailscale
|
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
if [[ "${VERSION}" == "7" ]] || [[ "${VERSION}" = "7*" ]]; then
|
if [[ "${VERSION}" == "8" ]] || [[ "${VERSION}" = "8*" ]]; then
|
||||||
yum install -y yum-utils
|
|
||||||
yum-config-manager --add-repo https://pkgs.tailscale.com/stable/centos/7/tailscale.repo
|
|
||||||
yum install -y tailscale
|
|
||||||
elif [[ "${VERSION}" == "8" ]] || [[ "${VERSION}" = "8*" ]]; then
|
|
||||||
dnf install -y 'dnf-command(config-manager)'
|
dnf install -y 'dnf-command(config-manager)'
|
||||||
dnf config-manager --add-repo https://pkgs.tailscale.com/stable/centos/8/tailscale.repo
|
dnf config-manager --add-repo https://pkgs.tailscale.com/stable/centos/8/tailscale.repo
|
||||||
dnf install -y tailscale
|
dnf install -y tailscale
|
||||||
|
Loading…
Reference in New Issue
Block a user