2024-07-23 11:45:16 +02:00
|
|
|
# Workaround it appearing to break SSH especially on family PC
|
|
|
|
@reboot /bin/bash -c "/bin/nordvpn set killswitch off;/usr/bin/systemctl disable --now nordvpnd.{service.socket} --quiet"
|
|
|
|
|
2024-04-12 11:01:25 +02:00
|
|
|
# Ensure /etc/sysctl.d/ gets read
|
|
|
|
@reboot /usr/sbin/sysctl -p --system >/dev/null 2>&1
|
|
|
|
|
2024-04-25 11:46:17 +02:00
|
|
|
# Ensure we really allow ICMPv6 on FEDORA
|
|
|
|
@reboot /usr/bin/firewall-cmd --add-protocol=ipv6-icmp >/dev/null 2>&1
|
|
|
|
|
2023-03-24 08:04:26 +01:00
|
|
|
# 3rd party Xbox controller initialization. See Mikaela/gist/gayming/
|
|
|
|
@reboot /root/fixcontroller.py
|
|
|
|
|
|
|
|
# BTRFS deduplication (on Lumina at least)
|
|
|
|
@reboot /usr/sbin/duperemove -rdhq --hashfile=/root/home.hash /home
|
|
|
|
@reboot /usr/sbin/duperemove -rdhq --hashfile=/root/flatpak.hash /var/lib/flatpak
|
|
|
|
@reboot /usr/sbin/duperemove -rdhq --hashfile=/root/snap.hash /var/lib/snapd
|
2023-03-24 12:10:44 +01:00
|
|
|
|
2024-03-29 07:30:29 +01:00
|
|
|
# Another attempt at ensuring Yggdrasil works with nordvpnd
|
2024-04-12 11:01:25 +02:00
|
|
|
@reboot /usr/bin/sleep 300 && /usr/sbin/sysctl net.ipv6.conf.all.disable_ipv6=0 >/dev/null 2>&1
|
|
|
|
@reboot /usr/bin/sleep 315 && /usr/bin/systemctl restart yggdrasil.service --quiet
|
2024-03-29 07:30:29 +01:00
|
|
|
|
2023-03-24 12:10:44 +01:00
|
|
|
# vim: filetype=crontab
|