-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sangemaru
authored and
root
committed
Jun 9, 2018
0 parents
commit 56877e3
Showing
1,685 changed files
with
49,539 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# begin section managed by etckeeper (do not edit this section by hand) | ||
|
||
# new and old versions of conffiles, stored by dpkg | ||
*.dpkg-* | ||
# new and old versions of conffiles, stored by ucf | ||
*.ucf-* | ||
|
||
# old versions of files | ||
*.old | ||
|
||
# mount(8) records system state here, no need to store these | ||
blkid.tab | ||
blkid.tab.old | ||
|
||
# some other files in /etc that typically do not need to be tracked | ||
nologin | ||
ld.so.cache | ||
prelink.cache | ||
mtab | ||
mtab.fuselock | ||
.pwd.lock | ||
*.LOCK | ||
network/run | ||
adjtime | ||
lvm/cache | ||
lvm/archive | ||
X11/xdm/authdir/authfiles/* | ||
ntp.conf.dhcp | ||
.initctl | ||
webmin/fsdump/*.status | ||
webmin/webmin/oscache | ||
apparmor.d/cache/* | ||
service/*/supervise/* | ||
service/*/log/supervise/* | ||
sv/*/supervise/* | ||
sv/*/log/supervise/* | ||
*.elc | ||
*.pyc | ||
*.pyo | ||
init.d/.depend.* | ||
openvpn/openvpn-status.log | ||
cups/subscriptions.conf | ||
cups/subscriptions.conf.O | ||
fake-hwclock.data | ||
check_mk/logwatch.state | ||
|
||
# editor temp files | ||
*~ | ||
.*.sw? | ||
.sw? | ||
\#*\# | ||
DEADJOE | ||
|
||
# end section managed by etckeeper |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[main] | ||
plugins=ifupdown,keyfile | ||
|
||
[ifupdown] | ||
managed=false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#!/bin/sh -e | ||
# Script to dispatch NetworkManager events | ||
# | ||
# Runs ifupdown scripts when NetworkManager fiddles with interfaces. | ||
# See NetworkManager(8) for further documentation of the dispatcher events. | ||
|
||
# We do not handle connectivity-change events in ifupdown so simply exit at | ||
# this point | ||
if [ "$2" = "connectivity-change" ]; then | ||
exit 0; | ||
fi | ||
|
||
if [ -z "$1" ]; then | ||
echo "$0: called with no interface" 1>&2 | ||
exit 1; | ||
fi | ||
|
||
if [ -n "$IP4_NUM_ADDRESSES" ] && [ "$IP4_NUM_ADDRESSES" -gt 0 ]; then | ||
ADDRESS_FAMILIES="$ADDRESS_FAMILIES inet" | ||
fi | ||
if [ -n "$IP6_NUM_ADDRESSES" ] && [ "$IP6_NUM_ADDRESSES" -gt 0 ]; then | ||
ADDRESS_FAMILIES="$ADDRESS_FAMILIES inet6" | ||
fi | ||
|
||
# If we have a VPN connection ignore the underlying IP address(es) | ||
if [ "$2" = "vpn-up" ] || [ "$2" = "vpn-down" ]; then | ||
ADDRESS_FAMILIES="" | ||
fi | ||
|
||
if [ -n "$VPN_IP4_NUM_ADDRESSES" ] && [ "$VPN_IP4_NUM_ADDRESSES" -gt 0 ]; then | ||
ADDRESS_FAMILIES="$ADDRESS_FAMILIES inet" | ||
fi | ||
if [ -n "$VPN_IP6_NUM_ADDRESSES" ] && [ "$VPN_IP6_NUM_ADDRESSES" -gt 0 ]; then | ||
ADDRESS_FAMILIES="$ADDRESS_FAMILIES inet6" | ||
fi | ||
|
||
# We're probably bringing the interface down. | ||
[ -n "$ADDRESS_FAMILIES" ] || ADDRESS_FAMILIES="inet" | ||
|
||
# Fake ifupdown environment | ||
export IFACE="$1" | ||
export LOGICAL="$1" | ||
export METHOD="NetworkManager" | ||
export VERBOSITY="0" | ||
|
||
for i in $ADDRESS_FAMILIES; do | ||
|
||
export ADDRFAM="$i" | ||
|
||
# Run the right scripts | ||
case "$2" in | ||
up|vpn-up) | ||
export MODE="start" | ||
export PHASE="post-up" | ||
run-parts /etc/network/if-up.d | ||
;; | ||
down|vpn-down) | ||
export MODE="stop" | ||
export PHASE="post-down" | ||
run-parts /etc/network/if-post-down.d | ||
;; | ||
# pre-up/pre-down not implemented. See | ||
# https://bugzilla.gnome.org/show_bug.cgi?id=387832 | ||
# pre-up) | ||
# export MODE="start" | ||
# export PHASE="pre-up" | ||
# run-parts /etc/network/if-pre-up.d | ||
# ;; | ||
# pre-down) | ||
# export MODE="stop" | ||
# export PHASE="pre-down" | ||
# run-parts /etc/network/if-down.d | ||
# ;; | ||
hostname|dhcp4-change|dhcp6-change) | ||
# Do nothing | ||
;; | ||
*) | ||
echo "$0: called with unknown action \`$2'" 1>&2 | ||
exit 1 | ||
;; | ||
esac | ||
done |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
[connection] | ||
id=Wired connection 1 | ||
uuid=8b8a85e6-47ce-49eb-b946-c8969e8a93f2 | ||
type=802-3-ethernet | ||
|
||
[802-3-ethernet] | ||
|
||
[ipv4] | ||
method=auto | ||
|
||
[ipv6] | ||
method=auto | ||
ip6-privacy=2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# Only the system vendor should modify this file, ordinary users | ||
# should not have to change anything. | ||
|
||
[UPower] | ||
|
||
# Enable the Watts Up Pro device. | ||
# | ||
# The Watts Up Pro contains a generic FTDI USB device without a specific | ||
# vendor and product ID. When we probe for WUP devices, we can cause | ||
# the user to get a perplexing "Device or resource busy" error when | ||
# attempting to use their non-WUP device. | ||
# | ||
# The generic FTDI device is known to also be used on: | ||
# | ||
# - Sparkfun FT232 breakout board | ||
# - Parallax Propeller | ||
# | ||
# default=false | ||
EnableWattsUpPro=false | ||
|
||
# Don't poll the kernel for battery level changes. | ||
# | ||
# Some hardware will send us battery level changes through | ||
# events, rather than us having to poll for it. This option | ||
# allows disabling polling for hardware that sends out events. | ||
# | ||
# default=false | ||
NoPollBatteries=false | ||
|
||
# Do we ignore the lid state | ||
# | ||
# Some laptops are broken. The lid state is either inverted, or stuck | ||
# on or off. We can't do much to fix these problems, but this is a way | ||
# for users to make the laptop panel vanish, a state that might be used | ||
# by a couple of user-space daemons. On Linux systems, see also | ||
# logind.conf(5). | ||
# | ||
# default=false | ||
IgnoreLid=false | ||
|
||
# Policy for warnings and action based on battery levels | ||
# | ||
# Whether battery percentage based policy should be used. The default | ||
# is to use the time left, change to true to use the percentage, which | ||
# should work around broken firmwares. It is also more reliable than | ||
# the time left (frantically saving all your files is going to use more | ||
# battery than letting it rest for example). | ||
# default=true | ||
UsePercentageForPolicy=true | ||
|
||
# When UsePercentageForPolicy is true, the levels at which UPower will | ||
# consider the battery low, critical, or take action for the critical | ||
# battery level. | ||
# | ||
# This will also be used for batteries which don't have time information | ||
# such as that of peripherals. | ||
# | ||
# If any value is invalid, or not in descending order, the defaults | ||
# will be used. | ||
# | ||
# Defaults: | ||
# PercentageLow=10 | ||
# PercentageCritical=3 | ||
# PercentageAction=2 | ||
PercentageLow=10 | ||
PercentageCritical=3 | ||
PercentageAction=2 | ||
|
||
# When UsePercentageForPolicy is false, the time remaining at which UPower | ||
# will consider the battery low, critical, or take action for the critical | ||
# battery level. | ||
# | ||
# If any value is invalid, or not in descending order, the defaults | ||
# will be used. | ||
# | ||
# Defaults: | ||
# TimeLow=1200 | ||
# TimeCritical=300 | ||
# TimeAction=120 | ||
TimeLow=1200 | ||
TimeCritical=300 | ||
TimeAction=120 | ||
|
||
# The action to take when "TimeAction" or "PercentageAction" above has been | ||
# reached for the batteries (UPS or laptop batteries) supplying the computer | ||
# | ||
# Possible values are: | ||
# PowerOff | ||
# Hibernate | ||
# HybridSleep | ||
# | ||
# If HybridSleep isn't available, Hibernate will be used | ||
# If Hibernate isn't available, PowerOff will be used | ||
CriticalPowerAction=HybridSleep |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/sh | ||
# | ||
# /etc/X11/Xreset | ||
# | ||
# global Xreset file -- for use by display managers | ||
|
||
# $Id: Xsession 967 2005-12-27 07:20:55Z dnusinow $ | ||
|
||
set -e | ||
|
||
PROGNAME=Xreset | ||
SYSSESSIONDIR=/etc/X11/Xreset.d | ||
|
||
if [ ! -d "$SYSSESSIONDIR" ]; then | ||
# Nothing to do, exiting | ||
exit 0 | ||
fi | ||
|
||
# use run-parts to source every file in the session directory; we source | ||
# instead of executing so that the variables and functions defined above | ||
# are available to the scripts, and so that they can pass variables to each | ||
# other | ||
SESSIONFILES=$(run-parts --list $SYSSESSIONDIR) | ||
if [ -n "$SESSIONFILES" ]; then | ||
set +e | ||
for SESSIONFILE in $SESSIONFILES; do | ||
. $SESSIONFILE | ||
done | ||
set -e | ||
fi | ||
|
||
exit 0 | ||
|
||
# vim:set ai et sts=2 sw=2 tw=80: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Scripts in this directory are executed as root when a user log out from | ||
# a display manager using /etc/X11/Xreset. | ||
# The username of the user logging out is provided in the $USER environment | ||
# variable. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
! $Id$ | ||
|
||
! load color-specific resources for clients that have them | ||
#ifdef COLOR | ||
*customization: -color | ||
#endif | ||
|
||
! make Xaw (Athena widget set) clients understand the delete key | ||
! this causes problems with some non-Xaw apps, use with care | ||
! *Text.translations: #override ~Shift ~Meta <Key>Delete: delete-next-character() |
Oops, something went wrong.