This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LAST_KERNEL=$(rpm -q --last kernel | perl -pe 's/^kernel-(\S+).*/$1/' | head -1) | |
CURRENT_KERNEL=$(uname -r) | |
if [ "$LAST_KERNEL" != "$CURRENT_KERNEL" ]; then | |
logger 'automatic reboot by yum-daily in 10 seconds' | |
sleep 10 | |
sync | |
systemctl reboot& | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Grégoire Seux <[email protected]> | |
# Contributor: Dean Galvin <[email protected]> | |
_pkgname="home-assistant" | |
pkgname="python-home-assistant" | |
pkgdesc='Home Assistant is an open-source home automation platform running on Python 3' | |
pkgver=0.24.1 | |
pkgrel=1 | |
url="https://home-assistant.io/" | |
license=('MIT') | |
arch=('any') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git merge v1.0 --no-commit --no-ff | |
rm .git/MERGE_HEAD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in 1 2 3 4 5; do | |
pool_mnt='/tanka /sftponly/*/tanka' | |
pool_name='tanka' | |
handle_count="$(lsof $pool_mnt | grep -v ' cwd ' | grep -v ^COMMAND | wc -l)" | |
if [ "$handle_count" -ne 0 ]; then | |
rm -f /tmp/spindown_harddrives.marker* | |
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# modprobe zram | |
# echo lz4 > /sys/block/zram0/comp_algorithm | |
# echo 10G > /sys/block/zram0/disksize | |
# zpool add tanka log /dev/zram0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
watch tc -s qdisc ls dev $dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conntrack: generic helper won't handle protocol 132. Please consider loading the specific helper module. | |
Fixing with | |
echo "ip_conntrack_proto_sctp" > /etc/modules-load.d/sctp.conf | |
modprobe ip_conntrack_proto_sctp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ -z "$1" ] && (echo "supply a hostname!") && exit 1 | |
hostname="$1" | |
extrarepos=' | |
[archlinuxfr] | |
SigLevel = Optional TrustAll | |
Server = http://repo.archlinux.fr/$arch | |
[repo-ck] | |
Server = http://repo-ck.com/$arch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
oldifs="$IFS" | |
IFS=$'\n' | |
echo "" > installed_programs.txt | |
for e in `yaourt -Qen`; do | |
echo "$(echo $e | cut -d' ' -f1)" >> installed_programs.txt | |
done | |
IFS=$oldifs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gpg-agent --daemon | |
gpg --full-gen-key --pinentry-mode loopback | |
gpg --keyserver keyserver.ubuntu.com --recv-key 1FFAA0B24B708F96 | |
gpg --keyserver keyserver.ubuntu.com --recv-key 520A9993A1C052F8 | |
gpg --lsign-key 1FFAA0B24B708F96 | |
gpg --lsign-key 520A9993A1C052F8 | |
yaourt -S nginx-mainline-libressl --noconfirm |