Removed commit history
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
commit
b1335a3628
199 changed files with 36930 additions and 0 deletions
37
root/etc/systemd/logind.conf
Normal file
37
root/etc/systemd/logind.conf
Normal file
|
@ -0,0 +1,37 @@
|
|||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation; either version 2.1 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Entries in this file show the compile time defaults.
|
||||
# You can change settings by editing this file.
|
||||
# Defaults can be restored by simply deleting this file.
|
||||
#
|
||||
# See logind.conf(5) for details.
|
||||
|
||||
[Login]
|
||||
#NAutoVTs=6
|
||||
#ReserveVT=6
|
||||
#KillUserProcesses=no
|
||||
#KillOnlyUsers=
|
||||
#KillExcludeUsers=root
|
||||
#InhibitDelayMaxSec=5
|
||||
HandlePowerKey=suspend
|
||||
#HandleSuspendKey=suspend
|
||||
#HandleHibernateKey=hibernate
|
||||
HandleLidSwitch=suspend
|
||||
HandleLidSwitchExternalPower=suspend
|
||||
HandleLidSwitchDocked=ignore
|
||||
#PowerKeyIgnoreInhibited=no
|
||||
#SuspendKeyIgnoreInhibited=no
|
||||
#HibernateKeyIgnoreInhibited=no
|
||||
#LidSwitchIgnoreInhibited=yes
|
||||
#HoldoffTimeoutSec=30s
|
||||
#IdleAction=ignore
|
||||
#IdleActionSec=30min
|
||||
#RuntimeDirectorySize=10%
|
||||
#RemoveIPC=yes
|
||||
#InhibitorsMax=8192
|
||||
#SessionsMax=8192
|
24
root/etc/systemd/resolved.conf
Executable file
24
root/etc/systemd/resolved.conf
Executable file
|
@ -0,0 +1,24 @@
|
|||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation; either version 2.1 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Entries in this file show the compile time defaults.
|
||||
# You can change settings by editing this file.
|
||||
# Defaults can be restored by simply deleting this file.
|
||||
#
|
||||
# See resolved.conf(5) for details
|
||||
|
||||
[Resolve]
|
||||
#DNS=
|
||||
#FallbackDNS=1.1.1.1 9.9.9.10 8.8.8.8 2606:4700:4700::1111 2620:fe::10 2001:4860:4860::8888
|
||||
#Domains=
|
||||
#LLMNR=yes
|
||||
MulticastDNS=yes
|
||||
#DNSSEC=allow-downgrade
|
||||
#DNSOverTLS=opportunistic
|
||||
#Cache=yes
|
||||
#DNSStubListener=yes
|
||||
#ReadEtcHosts=yes
|
11
root/etc/systemd/system/adb.service
Executable file
11
root/etc/systemd/system/adb.service
Executable file
|
@ -0,0 +1,11 @@
|
|||
[Unit]
|
||||
Description=Android Debug Server Daemon
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
User=root
|
||||
ExecStart=/usr/bin/adb start-server
|
||||
ExecStop=/usr/bin/adb kill-server
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -0,0 +1,3 @@
|
|||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=-/usr/bin/agetty --autologin frodo --noclear %I $TERM
|
3
root/etc/systemd/system/iwd.service.d/override.conf
Executable file
3
root/etc/systemd/system/iwd.service.d/override.conf
Executable file
|
@ -0,0 +1,3 @@
|
|||
[Unit]
|
||||
BindsTo=sys-subsystem-net-devices-wlan0.device
|
||||
After=sys-subsystem-net-devices-wlan0.device
|
14
root/etc/systemd/system/iwd@.service
Executable file
14
root/etc/systemd/system/iwd@.service
Executable file
|
@ -0,0 +1,14 @@
|
|||
[Unit]
|
||||
Description=Wireless service on %I
|
||||
BindsTo=sys-subsystem-net-devices-%i.device
|
||||
After=sys-subsystem-net-devices-%i.device
|
||||
|
||||
[Service]
|
||||
Type=dbus
|
||||
BusName=net.connman.iwd
|
||||
ExecStart=/usr/lib/iwd/iwd --interface %i
|
||||
LimitNPROC=1
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
10
root/etc/systemd/system/qbittorrent.service
Normal file
10
root/etc/systemd/system/qbittorrent.service
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=qBittorrent Daemon Service
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=qbtuser
|
||||
ExecStart=/usr/bin/qbittorrent-nox --webui-port=8080
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
13
root/etc/systemd/system/rtorrent.service
Normal file
13
root/etc/systemd/system/rtorrent.service
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Unit]
|
||||
Description=rTorrent in tmux
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=rtorrent
|
||||
WorkingDirectory=/home/rtorrent
|
||||
Environment="TERM=linux"
|
||||
Type=forking
|
||||
ExecStart=/bin/bash -c "/usr/bin/tmux -2u -L rtps-%u new-session -s rtps-%u -n rT-PS -d /bin/bash -c rtorrent"
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
3
root/etc/systemd/timesyncd.conf
Normal file
3
root/etc/systemd/timesyncd.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
[Time]
|
||||
NTP=0.arch.pool.ntp.org
|
||||
FallbackNTP=0.pfsense.pool.ntp.org
|
Loading…
Add table
Add a link
Reference in a new issue