2022-10-11 11:32:50 -04:00
|
|
|
Name: 3isec-qubes-mullvad-vpn
|
2024-02-27 17:57:48 -05:00
|
|
|
Version: 2023.6
|
2022-10-11 11:32:50 -04:00
|
|
|
Release: 1%{?dist}
|
2024-02-13 19:36:39 -05:00
|
|
|
Summary: Set up a Mullvad qube and disposable template
|
2022-10-11 11:32:50 -04:00
|
|
|
|
|
|
|
License: GPLv3+
|
|
|
|
SOURCE0: mullvad
|
|
|
|
|
|
|
|
%description
|
2024-02-13 19:36:39 -05:00
|
|
|
This package creates a template, loaded with the MullvadVPN GUI and Mullvad Browser.
|
|
|
|
An AppVM named mullvad, and a disposable template, mullvad-dvm, are
|
|
|
|
created from that template.
|
2022-10-11 11:32:50 -04:00
|
|
|
|
2024-02-13 19:36:39 -05:00
|
|
|
The template, template-mullvad, is based on the debian-12-minimal template.
|
|
|
|
If the debian-12-minimal template is not present, it will be downloaded
|
|
|
|
and installed - this may take some time depending on your net connection.
|
2022-10-11 11:32:50 -04:00
|
|
|
|
2024-02-13 19:36:39 -05:00
|
|
|
Both the AppVM and the disposable template have the Mullvad GUI to
|
|
|
|
set up a VPN, and the Mullvad browser. You can run the Mullvad Browser
|
|
|
|
independently of the VPN.
|
2022-10-11 11:32:50 -04:00
|
|
|
|
2024-02-13 19:36:39 -05:00
|
|
|
If you remove this package, the salt files will be removed, but the qubes will not.
|
|
|
|
You can manually remove them if you wish.
|
2022-10-11 11:32:50 -04:00
|
|
|
|
2024-02-13 19:36:39 -05:00
|
|
|
You can, of course, use template-mullvad to create other qubes for
|
|
|
|
separate VPN connections, or a qube where you will just use the Mullvad browser.
|
2022-10-11 11:32:50 -04:00
|
|
|
|
2024-02-13 19:36:39 -05:00
|
|
|
Remember that each qube that creates a VPN will count toward the maximum of 6 clients.
|
|
|
|
Log out and close the VPN when you have finished with it: if you do not,
|
|
|
|
you will be prompted to log out other clients from the GUI.
|
2022-10-11 11:32:50 -04:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
mkdir -p %{buildroot}/srv/salt
|
|
|
|
cp -rv %{SOURCE0}/ %{buildroot}/srv/salt
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
/srv/salt/mullvad/*
|
|
|
|
|
|
|
|
%post
|
|
|
|
if [ $1 -eq 1 ]; then
|
2024-02-13 10:38:59 -05:00
|
|
|
qubesctl state.apply mullvad.clone
|
|
|
|
qubesctl --skip-dom0 --targets=template-mullvad state.apply mullvad.repo
|
|
|
|
qubesctl --skip-dom0 --targets=template-mullvad state.apply mullvad.browser
|
2024-02-13 19:36:39 -05:00
|
|
|
qubesctl state.apply mullvad.create_disposable
|
2022-10-11 11:32:50 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ $1 -eq 0 ]; then
|
|
|
|
fi
|
|
|
|
|
|
|
|
%changelog
|
2024-02-13 10:38:59 -05:00
|
|
|
* Sat Feb 10 2024 unman <unman@thirdeyesecurity.org> - 2.01
|
|
|
|
- Rewrite to use Mullvad GUI for connections
|
|
|
|
- Include Mullvad Browser
|
2023-02-21 08:52:35 -05:00
|
|
|
* Mon Feb 20 2023 unman <unman@thirdeyesecurity.org> - 1.02
|
|
|
|
- Use pillar for cacher to determine repo changes
|
2022-11-29 09:03:45 -05:00
|
|
|
* Mon Nov 28 2022 unman <unman@thirdeyesecurity.org> - 1.1
|
|
|
|
- Fix wireshark typo
|
2022-10-11 11:32:50 -04:00
|
|
|
* Mon Aug 08 2022 unman <unman@thirdeyesecurity.org> - 1.0
|
|
|
|
- First Build
|