Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: install OpenVPN3 #248

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lumina/scripts/_base/003-ptyxis-terminal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ fi

rpm-ostree install ptyxis

rm -rf /etc/yum.repos.d/_copr_ublue-os_staging.repo
rm /etc/yum.repos.d/_copr_ublue-os_staging.repo
2 changes: 1 addition & 1 deletion lumina/scripts/_base/004-vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ EOF

rpm-ostree install code

rm -f /etc/yum.repos.d/vscode.repo
rm /etc/yum.repos.d/vscode.repo
2 changes: 1 addition & 1 deletion lumina/scripts/_base/006-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ rpm-ostree install \

systemctl enable docker.socket

rm -f /etc/yum.repos.d/docker-ce.repo
rm /etc/yum.repos.d/docker-ce.repo
2 changes: 1 addition & 1 deletion lumina/scripts/_base/007-install-development-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ install -c -m 0755 /tmp/devbox /usr/bin/devbox
rpm-ostree install \
gh zstd

rm -f /etc/yum.repos.d/github.repo
rm /etc/yum.repos.d/github.repo
4 changes: 2 additions & 2 deletions lumina/scripts/_base/010-install-1password.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ EOF

# remove the sysusers.d entries created by onepassword RPMs.
# They don't magically set the GID like we need them to.
rm -f /usr/lib/sysusers.d/30-rpmostree-pkg-group-onepassword.conf
rm -f /usr/lib/sysusers.d/30-rpmostree-pkg-group-onepassword-cli.conf
rm /usr/lib/sysusers.d/30-rpmostree-pkg-group-onepassword.conf
rm /usr/lib/sysusers.d/30-rpmostree-pkg-group-onepassword-cli.conf

# Register path symlink
# We do this via tmpfiles.d so that it is created by the live system.
Expand Down
10 changes: 10 additions & 0 deletions lumina/scripts/_base/014-openvpn.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/bash

set -euox pipefail

wget https://copr.fedorainfracloud.org/coprs/dsommers/openvpn3/repo/fedora-$(rpm -E %fedora)/dsommers-openvpn3-fedora-$(rpm -E %fedora).repo -O /etc/yum.repos.d/openvpn3.repo

rpm-ostree install \
openvpn3-client

rm /etc/yum.repos.d/openvpn3.repo
Loading