first commit
This commit is contained in:
		
							
								
								
									
										14
									
								
								etc_org/default/alsa
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								etc_org/default/alsa
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
			
		||||
# Configuration file for alsa-base
 | 
			
		||||
 | 
			
		||||
# List, separated by spaces, the names of modules that should be
 | 
			
		||||
# unloaded, if present, before the machine is suspended. Use the
 | 
			
		||||
# special name "all" if you would like all ALSA sound modules to be
 | 
			
		||||
# removed. The modules that are removed will be loaded again after
 | 
			
		||||
# resume.  Currently this only has an effect if you are using apmd.
 | 
			
		||||
# Examples:
 | 
			
		||||
#     Value         Action at suspend time
 | 
			
		||||
#     ""            Do nothing
 | 
			
		||||
#     "snd-cs46xx"  Stop sound processes and remove the snd-cs46xx module
 | 
			
		||||
#     "all"         Stop sound processes and remove all ALSA modules
 | 
			
		||||
force_unload_modules_before_suspend=""
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								etc_org/default/anacron
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								etc_org/default/anacron
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
# If set to "yes", start anacron even when on battery power.  By
 | 
			
		||||
# default, the /etc/init.d/anacron script tries to avoid running
 | 
			
		||||
# anacron unless on AC power, so as to avoid running down the battery.
 | 
			
		||||
# (Things like the locate updatedb cause a lot of I/O.)
 | 
			
		||||
 | 
			
		||||
ANACRON_RUN_ON_BATTERY_POWER=no
 | 
			
		||||
							
								
								
									
										4
									
								
								etc_org/default/apport
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								etc_org/default/apport
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
# set this to 0 to disable apport, or to 1 to enable it
 | 
			
		||||
# you can temporarily override this with
 | 
			
		||||
# sudo service apport start force_start=1
 | 
			
		||||
enabled=0
 | 
			
		||||
							
								
								
									
										81
									
								
								etc_org/default/aufs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										81
									
								
								etc_org/default/aufs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,81 @@
 | 
			
		||||
# aufs variables for shell scripts
 | 
			
		||||
AUFS_VERSION=4.x-rcN-20160111
 | 
			
		||||
AUFS_SUPER_MAGIC=1635083891
 | 
			
		||||
AUFS_SUPER_MAGIC_HEX=0x61756673
 | 
			
		||||
AUFS_ROOT_INO=2
 | 
			
		||||
AUFS_WH_PFX=.wh.
 | 
			
		||||
AUFS_WH_PFX2=.wh..wh.
 | 
			
		||||
AUFS_MAX_NAMELEN=242
 | 
			
		||||
AUFS_WKQ_NAME=aufsd
 | 
			
		||||
AUFS_WH_DIROPQ=.wh..wh..opq
 | 
			
		||||
AUFS_WH_BASE=.wh..wh.aufs
 | 
			
		||||
AUFS_WH_PLINKDIR=.wh..wh.plnk
 | 
			
		||||
AUFS_WH_ORPHDIR=.wh..wh.orph
 | 
			
		||||
 | 
			
		||||
# library functions for aufs shell scripts
 | 
			
		||||
 | 
			
		||||
# path in canonical representation
 | 
			
		||||
# note: bash builtin "pwd -P" modies $PWD unexpectedly
 | 
			
		||||
SetDir() # var dir
 | 
			
		||||
{
 | 
			
		||||
	cd "$2"
 | 
			
		||||
	eval "$1=\"$(pwd -P)\""
 | 
			
		||||
	cd "$OLDPWD"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# escape the unprintable characters, mainly for grep-ping /proc/mounts
 | 
			
		||||
Esc() # [-e]
 | 
			
		||||
{
 | 
			
		||||
	sed -r -e '
 | 
			
		||||
	s/\\/\\134/g
 | 
			
		||||
	s/$/\\012/
 | 
			
		||||
	' |
 | 
			
		||||
	tr -d '\n' |
 | 
			
		||||
	sed -r -e '
 | 
			
		||||
	s/ /\\040/g
 | 
			
		||||
	s/\t/\\011/g
 | 
			
		||||
	s/\r/\\015/g
 | 
			
		||||
	s/\\012$//
 | 
			
		||||
	' |
 | 
			
		||||
	{ test $# -eq 1 &&
 | 
			
		||||
	test "$1" = "-e" &&
 | 
			
		||||
	sed -r -e 's/\\/\\\\/g' ||
 | 
			
		||||
	cat; }
 | 
			
		||||
	echo
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# find a mount-entry by its mount-point
 | 
			
		||||
FindMntEnt() # mntpnt
 | 
			
		||||
{
 | 
			
		||||
	proc_mounts=/proc/self/mounts
 | 
			
		||||
	test ! -e $proc_mounts && proc_mounts=/proc/$$/mounts
 | 
			
		||||
	test ! -e $proc_mounts && proc_mounts=/proc/mounts
 | 
			
		||||
	fgrep \ $(echo "$1" | Esc)\ aufs\  $proc_mounts |
 | 
			
		||||
	tail -n 1
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# current mount options
 | 
			
		||||
MntOpts() # mntpnt
 | 
			
		||||
{
 | 
			
		||||
	FindMntEnt "$1" |
 | 
			
		||||
	cut -f4 -d' '
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
########################################
 | 
			
		||||
 | 
			
		||||
AuDebug() # 1 | 0 [sec]
 | 
			
		||||
{
 | 
			
		||||
	test $1 -eq 0 && set +x
 | 
			
		||||
	aufs_debug=/sys/module/aufs/parameters/debug
 | 
			
		||||
	if [ -f $aufs_debug ]
 | 
			
		||||
	then
 | 
			
		||||
		echo $1 | sudo dd of=$aufs_debug 2> /dev/null
 | 
			
		||||
		test $# -eq 2 && sleep $2
 | 
			
		||||
	fi
 | 
			
		||||
	test $1 -eq 1 && set -x
 | 
			
		||||
	true
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Local variables: ;
 | 
			
		||||
# mode: text;
 | 
			
		||||
# End: ;
 | 
			
		||||
							
								
								
									
										4
									
								
								etc_org/default/avahi-daemon
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								etc_org/default/avahi-daemon
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
# 1 = Try to detect unicast dns servers that serve .local and disable avahi in
 | 
			
		||||
# that case, 0 = Don't try to detect .local unicast dns servers, can cause
 | 
			
		||||
# troubles on misconfigured networks
 | 
			
		||||
AVAHI_DAEMON_DETECT_LOCAL=1
 | 
			
		||||
							
								
								
									
										16
									
								
								etc_org/default/brltty
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								etc_org/default/brltty
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
# This is a configuration file for /etc/init.d/brltty; it allows you to
 | 
			
		||||
# perform common modifications to the behavior of the brltty daemon
 | 
			
		||||
# startup.
 | 
			
		||||
 | 
			
		||||
# Arguments to pass to BRLTTY
 | 
			
		||||
ARGUMENTS="-q"
 | 
			
		||||
 | 
			
		||||
# If true (or yes) BRLTTY will be started during initramfs execution.
 | 
			
		||||
# If you change this setting, you have to run "update-initramfs -u" to have it
 | 
			
		||||
# take effect.  If this setting is on, "update-initramfs -u" also needs to be
 | 
			
		||||
# run if /etc/brltty.conf gets changed.
 | 
			
		||||
START_IN_INITRAMFS=false
 | 
			
		||||
 | 
			
		||||
# Set RUN_BRLTTY=yes to start brltty at boot time. You may need to
 | 
			
		||||
# configure it in /etc/brltty.conf.
 | 
			
		||||
RUN_BRLTTY=no
 | 
			
		||||
							
								
								
									
										4
									
								
								etc_org/default/bsdmainutils
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								etc_org/default/bsdmainutils
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
# Uncomment the following line if you'd like all of your users'
 | 
			
		||||
# ~/calendar files to be checked daily.  Calendar will send them mail
 | 
			
		||||
# to remind them of upcoming events.  See calendar(1) for more details.
 | 
			
		||||
#RUN_DAILY=true
 | 
			
		||||
							
								
								
									
										7
									
								
								etc_org/default/busybox-syslogd
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								etc_org/default/busybox-syslogd
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
# Defaults for busybox-syslogd initscript
 | 
			
		||||
# This is a POSIX shell fragment sourced by /etc/init.d/busybox-syslogd
 | 
			
		||||
 | 
			
		||||
# Additional options that are passed to the daemons.  Default is to log
 | 
			
		||||
# to ring buffer (to be read with logread(1)) and drop duplicates.
 | 
			
		||||
SYSLOG_OPTS="-C128"
 | 
			
		||||
KLOG_OPTS=""
 | 
			
		||||
							
								
								
									
										10
									
								
								etc_org/default/cacerts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								etc_org/default/cacerts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
# defaults for ca-certificates-java
 | 
			
		||||
 | 
			
		||||
# The password which is used to protect the integrity of the keystore.
 | 
			
		||||
# storepass must be at least 6 characters long. It must be provided to
 | 
			
		||||
# all commands that access the keystore contents.
 | 
			
		||||
# Only change this if adding private certificates.
 | 
			
		||||
#storepass=''
 | 
			
		||||
 | 
			
		||||
# enable/disable updates of the keystore /etc/ssl/certs/java/cacerts
 | 
			
		||||
cacerts_updates=yes
 | 
			
		||||
							
								
								
									
										16
									
								
								etc_org/default/console-setup
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								etc_org/default/console-setup
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
# CONFIGURATION FILE FOR SETUPCON
 | 
			
		||||
 | 
			
		||||
# Consult the console-setup(5) manual page.
 | 
			
		||||
 | 
			
		||||
ACTIVE_CONSOLES="/dev/tty[1-6]"
 | 
			
		||||
 | 
			
		||||
CHARMAP="UTF-8"
 | 
			
		||||
 | 
			
		||||
CODESET="guess"
 | 
			
		||||
FONTFACE="Fixed"
 | 
			
		||||
FONTSIZE="8x16"
 | 
			
		||||
 | 
			
		||||
VIDEOMODE=
 | 
			
		||||
 | 
			
		||||
# The following is an example how to use a braille font
 | 
			
		||||
# FONT='lat9w-08.psf.gz brl-8x8.psf'
 | 
			
		||||
							
								
								
									
										11
									
								
								etc_org/default/crda
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								etc_org/default/crda
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
# Set REGDOMAIN to a ISO/IEC 3166-1 alpha2 country code so that iw(8) may set
 | 
			
		||||
# the initial regulatory domain setting for IEEE 802.11 devices which operate
 | 
			
		||||
# on this system.
 | 
			
		||||
#
 | 
			
		||||
# Governments assert the right to regulate usage of radio spectrum within
 | 
			
		||||
# their respective territories so make sure you select a ISO/IEC 3166-1 alpha2
 | 
			
		||||
# country code suitable for your location or you may infringe on local
 | 
			
		||||
# legislature. See `/usr/share/zoneinfo/zone.tab' for a table of timezone
 | 
			
		||||
# descriptions containing ISO/IEC 3166-1 alpha2 country codes.
 | 
			
		||||
 | 
			
		||||
REGDOMAIN=
 | 
			
		||||
							
								
								
									
										3
									
								
								etc_org/default/cron
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								etc_org/default/cron
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
# This file has been deprecated. Please add custom options for cron to
 | 
			
		||||
# /etc/init/cron.conf and/or /etc/init/cron.override directly. See
 | 
			
		||||
# the init(5) man page for more information.
 | 
			
		||||
							
								
								
									
										17
									
								
								etc_org/default/cryptdisks
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								etc_org/default/cryptdisks
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
# Run cryptdisks initscripts at startup? Default is Yes.
 | 
			
		||||
CRYPTDISKS_ENABLE=Yes
 | 
			
		||||
 | 
			
		||||
# Mountpoints to mount, before cryptsetup is invoked at initscripts. Takes
 | 
			
		||||
# mountpoins which are configured in /etc/fstab as arguments. Separate
 | 
			
		||||
# mountpoints by space.
 | 
			
		||||
# This is useful for keyfiles on removable media. Default is unset.
 | 
			
		||||
CRYPTDISKS_MOUNT=""
 | 
			
		||||
 | 
			
		||||
# Default check script. Takes effect, if the 'check' option is set in crypttab
 | 
			
		||||
# without a value.
 | 
			
		||||
CRYPTDISKS_CHECK=blkid
 | 
			
		||||
 | 
			
		||||
# Default precheck script. Takes effect, if the 'precheck' option is set in
 | 
			
		||||
# crypttab without a value.
 | 
			
		||||
# Default is 'un_blkid' for plain dm-crypt devices if unset here.
 | 
			
		||||
CRYPTDISKS_PRECHECK=
 | 
			
		||||
							
								
								
									
										7
									
								
								etc_org/default/dbus
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								etc_org/default/dbus
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
# This is a configuration file for /etc/init.d/dbus; it allows you to
 | 
			
		||||
# perform common modifications to the behavior of the dbus daemon
 | 
			
		||||
# startup without editing the init script (and thus getting prompted
 | 
			
		||||
# by dpkg on upgrades).  We all love dpkg prompts.
 | 
			
		||||
 | 
			
		||||
# Parameters to pass to dbus.
 | 
			
		||||
PARAMS=""
 | 
			
		||||
							
								
								
									
										5
									
								
								etc_org/default/devpts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								etc_org/default/devpts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
# GID of the `tty' group
 | 
			
		||||
TTYGRP=5
 | 
			
		||||
 | 
			
		||||
# Set to 600 to have `mesg n' be the default
 | 
			
		||||
TTYMODE=620
 | 
			
		||||
							
								
								
									
										2
									
								
								etc_org/default/halt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								etc_org/default/halt
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
# Default behaviour of shutdown -h / halt. Set to "halt" or "poweroff".
 | 
			
		||||
HALT=poweroff
 | 
			
		||||
							
								
								
									
										39
									
								
								etc_org/default/hddtemp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								etc_org/default/hddtemp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,39 @@
 | 
			
		||||
# Defaults for hddtemp initscript (/etc/init.d/hddtemp)
 | 
			
		||||
# This is a POSIX shell fragment
 | 
			
		||||
 | 
			
		||||
# [automatically edited by postinst, do not change line format ]
 | 
			
		||||
 | 
			
		||||
# hddtemp network daemon switch. If set to true, hddtemp will listen
 | 
			
		||||
# for incoming connections.
 | 
			
		||||
RUN_DAEMON="false"
 | 
			
		||||
 | 
			
		||||
# List of devices you want to use with hddtemp. If none specified,
 | 
			
		||||
# hddtemp will probe standard devices.
 | 
			
		||||
#DISKS="/dev/hda"
 | 
			
		||||
 | 
			
		||||
# List of devices you want to use with hddtemp, but that would not be
 | 
			
		||||
# probed for a working sensor.
 | 
			
		||||
DISKS_NOPROBE=""
 | 
			
		||||
 | 
			
		||||
# IP address of the interface on which you want hddtemp to be bound
 | 
			
		||||
# on. If none specified, goes to 127.0.0.1. Use 0.0.0.0 to bind hddtemp
 | 
			
		||||
# on all interfaces.
 | 
			
		||||
INTERFACE="127.0.0.1"
 | 
			
		||||
 | 
			
		||||
# Port number on which you want hddtemp to listen on. If none specified,
 | 
			
		||||
# the port 7634 is used.
 | 
			
		||||
PORT="7634"
 | 
			
		||||
 | 
			
		||||
# Database file to use. If none specified, /etc/hddtemp.db is used.
 | 
			
		||||
#DATABASE="/etc/hddtemp.db"
 | 
			
		||||
 | 
			
		||||
# Separator to use between fields. The default separator is '|'.
 | 
			
		||||
#SEPARATOR="|"
 | 
			
		||||
 | 
			
		||||
# Logging period (in seconds) for the temperatures. If set to a value
 | 
			
		||||
# different than 0, hddtemp will run as a daemon periodically logging
 | 
			
		||||
# the temperatures through syslog
 | 
			
		||||
RUN_SYSLOG="0"
 | 
			
		||||
 | 
			
		||||
# Other options to pass to hddtemp
 | 
			
		||||
OPTIONS=""
 | 
			
		||||
							
								
								
									
										27
									
								
								etc_org/default/im-config
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								etc_org/default/im-config
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,27 @@
 | 
			
		||||
# Default im-config mode (see im-config(8))
 | 
			
		||||
 | 
			
		||||
if [ "$XDG_CURRENT_DESKTOP" = 'Unity' -o "$XDG_CURRENT_DESKTOP" = 'MATE' -o "${XDG_CURRENT_DESKTOP##*:}" = 'GNOME' ]; then
 | 
			
		||||
    # Start best input method unless overridden below
 | 
			
		||||
    IM_CONFIG_DEFAULT_MODE=auto
 | 
			
		||||
else
 | 
			
		||||
    # Start best input method only if CJKV environment and not overridden below
 | 
			
		||||
    IM_CONFIG_DEFAULT_MODE=cjkv
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# Set locale dependent preferred IM over standard auto mode
 | 
			
		||||
if [ "${XDG_CURRENT_DESKTOP##*:}" != 'GNOME' -a "${XDG_CURRENT_DESKTOP%%:*}" != 'GNOME-Flashback' ]; then
 | 
			
		||||
    IM_CONFIG_PREFERRED_RULE="zh_CN,fcitx:zh_TW,fcitx:zh_HK,fcitx:zh_SG,fcitx:ja_JP,fcitx:ko_KR,fcitx:vi_VN,fcitx"
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# User and system wide configuration is normally done via im-config program.
 | 
			
		||||
# The above IM_CONFIG_PREFERRED_RULE sets locale dependent preferred IM
 | 
			
		||||
# override rule.  If you wish to use uim over ibus just for ja_JP,
 | 
			
		||||
# add :ja_JP,uim at the end of the above list.
 | 
			
		||||
 | 
			
		||||
# Trace commands for debug
 | 
			
		||||
# (This may cause problem configuration file generated under console mode)
 | 
			
		||||
#IM_CONFIG_SETMODE="-x"
 | 
			
		||||
 | 
			
		||||
# Verbose output for debug (uncomment following)
 | 
			
		||||
#IM_CONFIG_VERBOSE="true"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								etc_org/default/irqbalance
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								etc_org/default/irqbalance
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
#Configuration for the irqbalance daemon
 | 
			
		||||
 | 
			
		||||
#Should irqbalance be enabled?
 | 
			
		||||
ENABLED="1"
 | 
			
		||||
#Balance the IRQs only once?
 | 
			
		||||
ONESHOT="0"
 | 
			
		||||
							
								
								
									
										3
									
								
								etc_org/default/kerneloops
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								etc_org/default/kerneloops
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
# Whether the daemon should be started at boot time.
 | 
			
		||||
# Set to 1 to start.
 | 
			
		||||
ENABLED=1
 | 
			
		||||
							
								
								
									
										10
									
								
								etc_org/default/keyboard
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								etc_org/default/keyboard
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
# KEYBOARD CONFIGURATION FILE
 | 
			
		||||
 | 
			
		||||
# Consult the keyboard(5) manual page.
 | 
			
		||||
 | 
			
		||||
XKBMODEL="pc105"
 | 
			
		||||
XKBLAYOUT="de"
 | 
			
		||||
XKBVARIANT=""
 | 
			
		||||
XKBOPTIONS=""
 | 
			
		||||
 | 
			
		||||
BACKSPACE="guess"
 | 
			
		||||
							
								
								
									
										10
									
								
								etc_org/default/keyboard.pre-ubiquity
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								etc_org/default/keyboard.pre-ubiquity
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
# KEYBOARD CONFIGURATION FILE
 | 
			
		||||
 | 
			
		||||
# Consult the keyboard(5) manual page.
 | 
			
		||||
 | 
			
		||||
XKBMODEL="pc105"
 | 
			
		||||
XKBLAYOUT="us"
 | 
			
		||||
XKBVARIANT=""
 | 
			
		||||
XKBOPTIONS=""
 | 
			
		||||
 | 
			
		||||
BACKSPACE="guess"
 | 
			
		||||
							
								
								
									
										12
									
								
								etc_org/default/locale
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								etc_org/default/locale
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
#  File generated by update-locale
 | 
			
		||||
LANG="de_DE.UTF-8"
 | 
			
		||||
LANGUAGE="de_DE:en"
 | 
			
		||||
LC_NUMERIC="de_DE.UTF-8"
 | 
			
		||||
LC_TIME="de_DE.UTF-8"
 | 
			
		||||
LC_MONETARY="de_DE.UTF-8"
 | 
			
		||||
LC_PAPER="de_DE.UTF-8"
 | 
			
		||||
LC_IDENTIFICATION="de_DE.UTF-8"
 | 
			
		||||
LC_NAME="de_DE.UTF-8"
 | 
			
		||||
LC_ADDRESS="de_DE.UTF-8"
 | 
			
		||||
LC_TELEPHONE="de_DE.UTF-8"
 | 
			
		||||
LC_MEASUREMENT="de_DE.UTF-8"
 | 
			
		||||
							
								
								
									
										11
									
								
								etc_org/default/networking
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								etc_org/default/networking
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
# Configuration for networking init script being run during
 | 
			
		||||
# the boot sequence
 | 
			
		||||
 | 
			
		||||
# Set to 'no' to skip interfaces configuration on boot
 | 
			
		||||
#CONFIGURE_INTERFACES=yes
 | 
			
		||||
 | 
			
		||||
# Don't configure these interfaces. Shell wildcards supported/
 | 
			
		||||
#EXCLUDE_INTERFACES=
 | 
			
		||||
 | 
			
		||||
# Set to 'yes' to enable additional verbosity
 | 
			
		||||
#VERBOSE=no
 | 
			
		||||
							
								
								
									
										37
									
								
								etc_org/default/nss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								etc_org/default/nss
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,37 @@
 | 
			
		||||
# /etc/default/nss
 | 
			
		||||
# This file can theoretically contain a bunch of customization variables
 | 
			
		||||
# for Name Service Switch in the GNU C library.  For now there are only
 | 
			
		||||
# four variables:
 | 
			
		||||
#
 | 
			
		||||
# NETID_AUTHORITATIVE
 | 
			
		||||
#   If set to TRUE, the initgroups() function will accept the information
 | 
			
		||||
#   from the netid.byname NIS map as authoritative.  This can speed up the
 | 
			
		||||
#   function significantly if the group.byname map is large.  The content
 | 
			
		||||
#   of the netid.byname map is used AS IS.  The system administrator has
 | 
			
		||||
#   to make sure it is correctly generated.
 | 
			
		||||
#NETID_AUTHORITATIVE=TRUE
 | 
			
		||||
#
 | 
			
		||||
# SERVICES_AUTHORITATIVE
 | 
			
		||||
#   If set to TRUE, the getservbyname{,_r}() function will assume
 | 
			
		||||
#   services.byservicename NIS map exists and is authoritative, particularly
 | 
			
		||||
#   that it contains both keys with /proto and without /proto for both
 | 
			
		||||
#   primary service names and service aliases.  The system administrator
 | 
			
		||||
#   has to make sure it is correctly generated.
 | 
			
		||||
#SERVICES_AUTHORITATIVE=TRUE
 | 
			
		||||
#
 | 
			
		||||
# SETENT_BATCH_READ
 | 
			
		||||
#  If set to TRUE, various setXXent() functions will read the entire
 | 
			
		||||
#  database at once and then hand out the requests one by one from
 | 
			
		||||
#  memory with every getXXent() call.  Otherwise each getXXent() call
 | 
			
		||||
#  might result into a network communication with the server to get
 | 
			
		||||
#  the next entry.
 | 
			
		||||
#SETENT_BATCH_READ=TRUE
 | 
			
		||||
#
 | 
			
		||||
# ADJUNCT_AS_SHADOW
 | 
			
		||||
#  If set to TRUE, the passwd routines in the NIS NSS module will not
 | 
			
		||||
#  use the passwd.adjunct.byname tables to fill in the password data
 | 
			
		||||
#  in the passwd structure.  This is a security problem if the NIS
 | 
			
		||||
#  server cannot be trusted to send the passwd.adjuct table only to
 | 
			
		||||
#  privileged clients.  Instead the passwd.adjunct.byname table is
 | 
			
		||||
#  used to synthesize the shadow.byname table if it does not exist.
 | 
			
		||||
ADJUNCT_AS_SHADOW=TRUE
 | 
			
		||||
							
								
								
									
										1
									
								
								etc_org/default/ntp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								etc_org/default/ntp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
NTPD_OPTS='-g'
 | 
			
		||||
							
								
								
									
										24
									
								
								etc_org/default/rcS
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								etc_org/default/rcS
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
#
 | 
			
		||||
# /etc/default/rcS
 | 
			
		||||
#
 | 
			
		||||
# Default settings for the scripts in /etc/rcS.d/
 | 
			
		||||
#
 | 
			
		||||
# For information about these variables see the rcS(5) manual page.
 | 
			
		||||
#
 | 
			
		||||
# This file belongs to the "initscripts" package.
 | 
			
		||||
 | 
			
		||||
# delete files in /tmp during boot older than x days.
 | 
			
		||||
# '0' means always, -1 or 'infinite' disables the feature
 | 
			
		||||
#TMPTIME=0
 | 
			
		||||
 | 
			
		||||
# spawn sulogin during boot, continue normal boot if not used in 30 seconds
 | 
			
		||||
#SULOGIN=no
 | 
			
		||||
 | 
			
		||||
# do not allow users to log in until the boot has completed
 | 
			
		||||
#DELAYLOGIN=no
 | 
			
		||||
 | 
			
		||||
# be more verbose during the boot process
 | 
			
		||||
#VERBOSE=no
 | 
			
		||||
 | 
			
		||||
# automatically repair filesystems with inconsistencies during boot
 | 
			
		||||
#FSCKFIX=no
 | 
			
		||||
							
								
								
									
										18
									
								
								etc_org/default/rng-tools
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								etc_org/default/rng-tools
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
# Configuration for the rng-tools initscript
 | 
			
		||||
# $Id: rng-tools.default,v 1.1.2.5 2008-06-10 19:51:37 hmh Exp $
 | 
			
		||||
 | 
			
		||||
# This is a POSIX shell fragment
 | 
			
		||||
 | 
			
		||||
# Set to the input source for random data, leave undefined
 | 
			
		||||
# for the initscript to attempt auto-detection.  Set to /dev/null
 | 
			
		||||
# for the viapadlock and tpm drivers.
 | 
			
		||||
#HRNGDEVICE=/dev/hwrng
 | 
			
		||||
#HRNGDEVICE=/dev/null
 | 
			
		||||
 | 
			
		||||
# Additional options to send to rngd. See the rngd(8) manpage for
 | 
			
		||||
# more information.  Do not specify -r/--rng-device here, use
 | 
			
		||||
# HRNGDEVICE for that instead.
 | 
			
		||||
#RNGDOPTIONS="--hrng=intelfwh --fill-watermark=90% --feed-interval=1"
 | 
			
		||||
#RNGDOPTIONS="--hrng=viakernel --fill-watermark=90% --feed-interval=1"
 | 
			
		||||
#RNGDOPTIONS="--hrng=viapadlock --fill-watermark=90% --feed-interval=1"
 | 
			
		||||
#RNGDOPTIONS="--hrng=tpm --fill-watermark=90% --feed-interval=1"
 | 
			
		||||
							
								
								
									
										41
									
								
								etc_org/default/rsync
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								etc_org/default/rsync
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,41 @@
 | 
			
		||||
# defaults file for rsync daemon mode
 | 
			
		||||
 | 
			
		||||
# start rsync in daemon mode from init.d script?
 | 
			
		||||
#  only allowed values are "true", "false", and "inetd"
 | 
			
		||||
#  Use "inetd" if you want to start the rsyncd from inetd,
 | 
			
		||||
#  all this does is prevent the init.d script from printing a message
 | 
			
		||||
#  about not starting rsyncd (you still need to modify inetd's config yourself).
 | 
			
		||||
RSYNC_ENABLE=false
 | 
			
		||||
 | 
			
		||||
# which file should be used as the configuration file for rsync.
 | 
			
		||||
# This file is used instead of the default /etc/rsyncd.conf
 | 
			
		||||
# Warning: This option has no effect if the daemon is accessed
 | 
			
		||||
#          using a remote shell. When using a different file for
 | 
			
		||||
#          rsync you might want to symlink /etc/rsyncd.conf to
 | 
			
		||||
#          that file.
 | 
			
		||||
# RSYNC_CONFIG_FILE=
 | 
			
		||||
 | 
			
		||||
# what extra options to give rsync --daemon?
 | 
			
		||||
#  that excludes the --daemon; that's always done in the init.d script
 | 
			
		||||
#  Possibilities are:
 | 
			
		||||
#   --address=123.45.67.89		(bind to a specific IP address)
 | 
			
		||||
#   --port=8730				(bind to specified port; default 873)
 | 
			
		||||
RSYNC_OPTS=''
 | 
			
		||||
 | 
			
		||||
# run rsyncd at a nice level?
 | 
			
		||||
#  the rsync daemon can impact performance due to much I/O and CPU usage,
 | 
			
		||||
#  so you may want to run it at a nicer priority than the default priority.
 | 
			
		||||
#  Allowed values are 0 - 19 inclusive; 10 is a reasonable value.
 | 
			
		||||
RSYNC_NICE=''
 | 
			
		||||
 | 
			
		||||
# run rsyncd with ionice?
 | 
			
		||||
#  "ionice" does for IO load what "nice" does for CPU load.
 | 
			
		||||
#  As rsync is often used for backups which aren't all that time-critical,
 | 
			
		||||
#  reducing the rsync IO priority will benefit the rest of the system.
 | 
			
		||||
#  See the manpage for ionice for allowed options.
 | 
			
		||||
#  -c3 is recommended, this will run rsync IO at "idle" priority. Uncomment
 | 
			
		||||
#  the next line to activate this.
 | 
			
		||||
# RSYNC_IONICE='-c3'
 | 
			
		||||
 | 
			
		||||
# Don't forget to create an appropriate config file,
 | 
			
		||||
# else the daemon will not start.
 | 
			
		||||
							
								
								
									
										4
									
								
								etc_org/default/rsyslog
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								etc_org/default/rsyslog
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
# Options for rsyslogd
 | 
			
		||||
# -x disables DNS lookups for remote messages
 | 
			
		||||
# See rsyslogd(8) for more details
 | 
			
		||||
RSYSLOGD_OPTIONS=""
 | 
			
		||||
							
								
								
									
										8
									
								
								etc_org/default/saned
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								etc_org/default/saned
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
			
		||||
# Defaults for the saned initscript, from sane-utils
 | 
			
		||||
 | 
			
		||||
# To enable under systemd please read README.Debian
 | 
			
		||||
# Set to yes to start saned under SysV
 | 
			
		||||
RUN=no
 | 
			
		||||
 | 
			
		||||
# Set to the user saned should run as
 | 
			
		||||
RUN_AS_USER=saned
 | 
			
		||||
							
								
								
									
										4
									
								
								etc_org/default/speech-dispatcher
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								etc_org/default/speech-dispatcher
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
# Defaults for the speech-dispatcher initscript, from speech-dispatcher
 | 
			
		||||
 | 
			
		||||
# Set to yes to start system wide Speech Dispatcher
 | 
			
		||||
RUN=no
 | 
			
		||||
							
								
								
									
										5
									
								
								etc_org/default/ssh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								etc_org/default/ssh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
# Default settings for openssh-server. This file is sourced by /bin/sh from
 | 
			
		||||
# /etc/init.d/ssh.
 | 
			
		||||
 | 
			
		||||
# Options to pass to sshd
 | 
			
		||||
SSHD_OPTS=
 | 
			
		||||
							
								
								
									
										259
									
								
								etc_org/default/tlp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										259
									
								
								etc_org/default/tlp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,259 @@
 | 
			
		||||
# ------------------------------------------------------------------------------
 | 
			
		||||
# tlp - Parameters for power save
 | 
			
		||||
# See full explanation: http://linrunner.de/en/tlp/docs/tlp-configuration.html
 | 
			
		||||
 | 
			
		||||
# Hint: some features are disabled by default, remove the leading # to enable
 | 
			
		||||
# them.
 | 
			
		||||
 | 
			
		||||
# Set to 0 to disable, 1 to enable TLP.
 | 
			
		||||
TLP_ENABLE=0
 | 
			
		||||
 | 
			
		||||
# Operation mode when no power supply can be detected: AC, BAT
 | 
			
		||||
# Concerns some desktop and embedded hardware only.
 | 
			
		||||
TLP_DEFAULT_MODE=AC
 | 
			
		||||
 | 
			
		||||
# Seconds laptop mode has to wait after the disk goes idle before doing a sync.
 | 
			
		||||
# Non-zero value enables, zero disables laptop mode.
 | 
			
		||||
DISK_IDLE_SECS_ON_AC=0
 | 
			
		||||
DISK_IDLE_SECS_ON_BAT=2
 | 
			
		||||
 | 
			
		||||
# Dirty page values (timeouts in secs).
 | 
			
		||||
MAX_LOST_WORK_SECS_ON_AC=15
 | 
			
		||||
MAX_LOST_WORK_SECS_ON_BAT=60
 | 
			
		||||
 | 
			
		||||
# Hint: CPU parameters below are disabled by default, remove the leading #
 | 
			
		||||
# to enable them, otherwise kernel default values are used.
 | 
			
		||||
 | 
			
		||||
# Select a CPU frequency scaling governor:
 | 
			
		||||
#   ondemand, powersave, performance, conservative
 | 
			
		||||
# Intel Core i processor with intel_pstate driver:
 | 
			
		||||
#   powersave, performance
 | 
			
		||||
# Important:
 | 
			
		||||
#   You *must* disable your distribution's governor settings or conflicts will
 | 
			
		||||
#   occur. ondemand is sufficient for *almost all* workloads, you should know
 | 
			
		||||
#   what you're doing!
 | 
			
		||||
#CPU_SCALING_GOVERNOR_ON_AC=ondemand
 | 
			
		||||
#CPU_SCALING_GOVERNOR_ON_BAT=ondemand
 | 
			
		||||
 | 
			
		||||
# Set the min/max frequency available for the scaling governor.
 | 
			
		||||
# Possible values strongly depend on your CPU. For available frequencies see
 | 
			
		||||
# tlp-stat output, Section "+++ Processor".
 | 
			
		||||
#CPU_SCALING_MIN_FREQ_ON_AC=0
 | 
			
		||||
#CPU_SCALING_MAX_FREQ_ON_AC=0
 | 
			
		||||
#CPU_SCALING_MIN_FREQ_ON_BAT=0
 | 
			
		||||
#CPU_SCALING_MAX_FREQ_ON_BAT=0
 | 
			
		||||
 | 
			
		||||
# Set Intel P-state performance: 0..100 (%)
 | 
			
		||||
# Limit the max/min P-state to control the power dissipation of the CPU.
 | 
			
		||||
# Values are stated as a percentage of the available performance.
 | 
			
		||||
# Requires an Intel Core i processor with intel_pstate driver.
 | 
			
		||||
#CPU_MIN_PERF_ON_AC=0
 | 
			
		||||
#CPU_MAX_PERF_ON_AC=100
 | 
			
		||||
#CPU_MIN_PERF_ON_BAT=0
 | 
			
		||||
#CPU_MAX_PERF_ON_BAT=30
 | 
			
		||||
 | 
			
		||||
# Set the CPU "turbo boost" feature: 0=disable, 1=allow
 | 
			
		||||
# Requires an Intel Core i processor.
 | 
			
		||||
# Important:
 | 
			
		||||
# - This may conflict with your distribution's governor settings
 | 
			
		||||
# - A value of 1 does *not* activate boosting, it just allows it
 | 
			
		||||
#CPU_BOOST_ON_AC=1
 | 
			
		||||
#CPU_BOOST_ON_BAT=0
 | 
			
		||||
 | 
			
		||||
# Minimize number of used CPU cores/hyper-threads under light load conditions
 | 
			
		||||
SCHED_POWERSAVE_ON_AC=0
 | 
			
		||||
SCHED_POWERSAVE_ON_BAT=1
 | 
			
		||||
 | 
			
		||||
# Kernel NMI Watchdog:
 | 
			
		||||
#   0=disable (default, saves power), 1=enable (for kernel debugging only)
 | 
			
		||||
NMI_WATCHDOG=0
 | 
			
		||||
 | 
			
		||||
# Change CPU voltages aka "undervolting" - Kernel with PHC patch required
 | 
			
		||||
# Frequency voltage pairs are written to:
 | 
			
		||||
#   /sys/devices/system/cpu/cpu0/cpufreq/phc_controls
 | 
			
		||||
# CAUTION: only use this, if you thoroughly understand what you are doing!
 | 
			
		||||
#PHC_CONTROLS="F:V F:V F:V F:V"
 | 
			
		||||
 | 
			
		||||
# Set CPU performance versus energy savings policy:
 | 
			
		||||
#   performance, normal, powersave
 | 
			
		||||
# Requires kernel module msr and x86_energy_perf_policy from linux-tools
 | 
			
		||||
ENERGY_PERF_POLICY_ON_AC=performance
 | 
			
		||||
ENERGY_PERF_POLICY_ON_BAT=powersave
 | 
			
		||||
 | 
			
		||||
# Hard disk devices; separate multiple devices with spaces (default: sda).
 | 
			
		||||
# Devices can be specified by disk ID also (lookup with: tlp diskid).
 | 
			
		||||
DISK_DEVICES="sda sdb"
 | 
			
		||||
 | 
			
		||||
# Hard disk advanced power management level: 1..254, 255 (max saving, min, off)
 | 
			
		||||
# Levels 1..127 may spin down the disk; 255 allowable on most drives.
 | 
			
		||||
# Separate values for multiple devices with spaces.
 | 
			
		||||
DISK_APM_LEVEL_ON_AC="254 254"
 | 
			
		||||
DISK_APM_LEVEL_ON_BAT="128 128"
 | 
			
		||||
 | 
			
		||||
# Hard disk spin down timeout:
 | 
			
		||||
#   0:        spin down disabled
 | 
			
		||||
#   1..240:   timeouts from 5s to 20min (in units of 5s)
 | 
			
		||||
#   241..251: timeouts from 30min to 5.5 hours (in units of 30min)
 | 
			
		||||
# See 'man hdparm' for details.
 | 
			
		||||
#DISK_SPINDOWN_TIMEOUT_ON_AC="0 0"
 | 
			
		||||
#DISK_SPINDOWN_TIMEOUT_ON_BAT="0 0"
 | 
			
		||||
 | 
			
		||||
# Select IO scheduler for the disk devices: noop, deadline, cfq (Default: cfq);
 | 
			
		||||
# Separate values for multiple devices with spaces.
 | 
			
		||||
#DISK_IOSCHED="cfq cfq"
 | 
			
		||||
 | 
			
		||||
# SATA aggressive link power management (ALPM):
 | 
			
		||||
#   min_power, medium_power, max_performance
 | 
			
		||||
SATA_LINKPWR_ON_AC=max_performance
 | 
			
		||||
SATA_LINKPWR_ON_BAT=min_power
 | 
			
		||||
 | 
			
		||||
# PCI Express Active State Power Management (PCIe ASPM):
 | 
			
		||||
#   default, performance, powersave
 | 
			
		||||
PCIE_ASPM_ON_AC=performance
 | 
			
		||||
PCIE_ASPM_ON_BAT=powersave
 | 
			
		||||
 | 
			
		||||
# Radeon graphics clock speed (profile method): low, mid, high, auto, default;
 | 
			
		||||
# auto = mid on BAT, high on AC; default = use hardware defaults.
 | 
			
		||||
# (Kernel >= 2.6.35 only, open-source radeon driver explicitly)
 | 
			
		||||
RADEON_POWER_PROFILE_ON_AC=high
 | 
			
		||||
RADEON_POWER_PROFILE_ON_BAT=low
 | 
			
		||||
 | 
			
		||||
# Radeon dynamic power management method (DPM): battery, performance
 | 
			
		||||
# (Kernel >= 3.11 only, requires boot option radeon.dpm=1)
 | 
			
		||||
RADEON_DPM_STATE_ON_AC=performance
 | 
			
		||||
RADEON_DPM_STATE_ON_BAT=battery
 | 
			
		||||
 | 
			
		||||
# Radeon DPM performance level: auto, low, high; auto is recommended.
 | 
			
		||||
RADEON_DPM_PERF_LEVEL_ON_AC=auto
 | 
			
		||||
RADEON_DPM_PERF_LEVEL_ON_BAT=auto
 | 
			
		||||
 | 
			
		||||
# WiFi power saving mode: 1=disable, 5=enable; not supported by all adapters.
 | 
			
		||||
WIFI_PWR_ON_AC=1
 | 
			
		||||
WIFI_PWR_ON_BAT=5
 | 
			
		||||
 | 
			
		||||
# Disable wake on LAN: Y/N
 | 
			
		||||
WOL_DISABLE=Y
 | 
			
		||||
 | 
			
		||||
# Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
 | 
			
		||||
# A value of 0 disables, >=1 enables power save.
 | 
			
		||||
SOUND_POWER_SAVE_ON_AC=0
 | 
			
		||||
SOUND_POWER_SAVE_ON_BAT=1
 | 
			
		||||
 | 
			
		||||
# Disable controller too (HDA only): Y/N
 | 
			
		||||
SOUND_POWER_SAVE_CONTROLLER=Y
 | 
			
		||||
 | 
			
		||||
# Set to 1 to power off optical drive in UltraBay/MediaBay when running on
 | 
			
		||||
# battery. A value of 0 disables this feature (Default).
 | 
			
		||||
# Drive can be powered on again by releasing (and reinserting) the eject lever
 | 
			
		||||
# or by pressing the disc eject button on newer models.
 | 
			
		||||
# Note: an UltraBay/MediaBay hard disk is never powered off.
 | 
			
		||||
BAY_POWEROFF_ON_BAT=0
 | 
			
		||||
# Optical drive device to power off (default sr0).
 | 
			
		||||
BAY_DEVICE="sr0"
 | 
			
		||||
 | 
			
		||||
# Runtime Power Management for PCI(e) bus devices: on=disable, auto=enable
 | 
			
		||||
RUNTIME_PM_ON_AC=on
 | 
			
		||||
RUNTIME_PM_ON_BAT=auto
 | 
			
		||||
 | 
			
		||||
# Runtime PM for *all* PCI(e) bus devices, except blacklisted ones:
 | 
			
		||||
#   0=disable, 1=enable
 | 
			
		||||
RUNTIME_PM_ALL=1
 | 
			
		||||
 | 
			
		||||
# Exclude PCI(e) device adresses the following list from Runtime PM
 | 
			
		||||
# (separate with spaces). Use lspci to get the adresses (1st column).
 | 
			
		||||
#RUNTIME_PM_BLACKLIST="bb:dd.f 11:22.3 44:55.6"
 | 
			
		||||
 | 
			
		||||
# Exclude PCI(e) devices assigned to the listed drivers from Runtime PM
 | 
			
		||||
# (should prevent accidential power on of hybrid graphics' discrete part).
 | 
			
		||||
# Default is "radeon nouveau"; use "" to disable the feature completely.
 | 
			
		||||
# Separate multiple drivers with spaces.
 | 
			
		||||
RUNTIME_PM_DRIVER_BLACKLIST="radeon nouveau"
 | 
			
		||||
 | 
			
		||||
# Set to 0 to disable, 1 to enable USB autosuspend feature.
 | 
			
		||||
USB_AUTOSUSPEND=1
 | 
			
		||||
 | 
			
		||||
# Exclude listed devices from USB autosuspend (separate with spaces).
 | 
			
		||||
# Use lsusb to get the ids.
 | 
			
		||||
# Note: input devices (usbhid) are excluded automatically (see below)
 | 
			
		||||
#USB_BLACKLIST="1111:2222 3333:4444"
 | 
			
		||||
 | 
			
		||||
# WWAN devices are excluded from USB autosuspend:
 | 
			
		||||
# 0=do not exclude / 1=exclude
 | 
			
		||||
USB_BLACKLIST_WWAN=1
 | 
			
		||||
 | 
			
		||||
# Include listed devices into USB autosuspend even if already excluded
 | 
			
		||||
# by the driver or WWAN blacklists above (separate with spaces).
 | 
			
		||||
# Use lsusb to get the ids.
 | 
			
		||||
#USB_WHITELIST="1111:2222 3333:4444"
 | 
			
		||||
 | 
			
		||||
# Set to 1 to disable autosuspend before shutdown, 0 to do nothing
 | 
			
		||||
# (workaround for USB devices that cause shutdown problems).
 | 
			
		||||
#USB_AUTOSUSPEND_DISABLE_ON_SHUTDOWN=1
 | 
			
		||||
 | 
			
		||||
# Restore radio device state (Bluetooth, WiFi, WWAN) from previous shutdown
 | 
			
		||||
# on system startup: 0=disable, 1=enable.
 | 
			
		||||
# Hint: the parameters DEVICES_TO_DISABLE/ENABLE_ON_STARTUP/SHUTDOWN below
 | 
			
		||||
#   are ignored when this is enabled!
 | 
			
		||||
RESTORE_DEVICE_STATE_ON_STARTUP=0
 | 
			
		||||
 | 
			
		||||
# Radio devices to disable on startup: bluetooth, wifi, wwan.
 | 
			
		||||
# Separate multiple devices with spaces.
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_STARTUP="bluetooth wifi wwan"
 | 
			
		||||
 | 
			
		||||
# Radio devices to enable on startup: bluetooth, wifi, wwan.
 | 
			
		||||
# Separate multiple devices with spaces.
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_STARTUP="wifi"
 | 
			
		||||
 | 
			
		||||
# Radio devices to disable on shutdown: bluetooth, wifi, wwan
 | 
			
		||||
# (workaround for devices that are blocking shutdown).
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_SHUTDOWN="bluetooth wifi wwan"
 | 
			
		||||
 | 
			
		||||
# Radio devices to enable on shutdown: bluetooth, wifi, wwan
 | 
			
		||||
# (to prevent other operating systems from missing radios).
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_SHUTDOWN="wwan"
 | 
			
		||||
 | 
			
		||||
# Radio devices to enable on AC: bluetooth, wifi, wwan
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_AC="bluetooth wifi wwan"
 | 
			
		||||
 | 
			
		||||
# Radio devices to disable on battery: bluetooth, wifi, wwan
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_BAT="bluetooth wifi wwan"
 | 
			
		||||
 | 
			
		||||
# Radio devices to disable on battery when not in use (not connected):
 | 
			
		||||
# bluetooth, wifi, wwan
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_BAT_NOT_IN_USE="bluetooth wifi wwan"
 | 
			
		||||
 | 
			
		||||
# Battery charge thresholds (ThinkPad only, tp-smapi or acpi-call kernel module
 | 
			
		||||
# required). Charging starts when the remaining capacity falls below the
 | 
			
		||||
# START_CHARGE_TRESH value and stops when exceeding the STOP_CHARGE_TRESH value.
 | 
			
		||||
# Main / Internal battery (values in %)
 | 
			
		||||
#START_CHARGE_THRESH_BAT0=75
 | 
			
		||||
#STOP_CHARGE_THRESH_BAT0=80
 | 
			
		||||
# Ultrabay / Slice / Replaceable battery (values in %)
 | 
			
		||||
#START_CHARGE_THRESH_BAT1=75
 | 
			
		||||
#STOP_CHARGE_THRESH_BAT1=80
 | 
			
		||||
 | 
			
		||||
# ------------------------------------------------------------------------------
 | 
			
		||||
# tlp-rdw - Parameters for the radio device wizard
 | 
			
		||||
# Possible devices: bluetooth, wifi, wwan
 | 
			
		||||
 | 
			
		||||
# Hints:
 | 
			
		||||
# - Parameters are disabled by default, remove the leading # to enable them.
 | 
			
		||||
# - Separate multiple radio devices with spaces.
 | 
			
		||||
 | 
			
		||||
# Radio devices to disable on connect.
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_LAN_CONNECT="wifi wwan"
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_WIFI_CONNECT="wwan"
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_WWAN_CONNECT="wifi"
 | 
			
		||||
 | 
			
		||||
# Radio devices to enable on disconnect.
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_LAN_DISCONNECT="wifi wwan"
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_WIFI_DISCONNECT=""
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_WWAN_DISCONNECT=""
 | 
			
		||||
 | 
			
		||||
# Radio devices to enable/disable when docked.
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_DOCK=""
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_DOCK=""
 | 
			
		||||
 | 
			
		||||
# Radio devices to enable/disable when undocked.
 | 
			
		||||
#DEVICES_TO_ENABLE_ON_UNDOCK="wifi"
 | 
			
		||||
#DEVICES_TO_DISABLE_ON_UNDOCK=""
 | 
			
		||||
							
								
								
									
										45
									
								
								etc_org/default/ufw
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								etc_org/default/ufw
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,45 @@
 | 
			
		||||
# /etc/default/ufw
 | 
			
		||||
#
 | 
			
		||||
 | 
			
		||||
# Set to yes to apply rules to support IPv6 (no means only IPv6 on loopback
 | 
			
		||||
# accepted). You will need to 'disable' and then 'enable' the firewall for
 | 
			
		||||
# the changes to take affect.
 | 
			
		||||
IPV6=yes
 | 
			
		||||
 | 
			
		||||
# Set the default input policy to ACCEPT, DROP, or REJECT. Please note that if
 | 
			
		||||
# you change this you will most likely want to adjust your rules.
 | 
			
		||||
DEFAULT_INPUT_POLICY="DROP"
 | 
			
		||||
 | 
			
		||||
# Set the default output policy to ACCEPT, DROP, or REJECT. Please note that if
 | 
			
		||||
# you change this you will most likely want to adjust your rules.
 | 
			
		||||
DEFAULT_OUTPUT_POLICY="ACCEPT"
 | 
			
		||||
 | 
			
		||||
# Set the default forward policy to ACCEPT, DROP or REJECT.  Please note that
 | 
			
		||||
# if you change this you will most likely want to adjust your rules
 | 
			
		||||
DEFAULT_FORWARD_POLICY="DROP"
 | 
			
		||||
 | 
			
		||||
# Set the default application policy to ACCEPT, DROP, REJECT or SKIP. Please
 | 
			
		||||
# note that setting this to ACCEPT may be a security risk. See 'man ufw' for
 | 
			
		||||
# details
 | 
			
		||||
DEFAULT_APPLICATION_POLICY="SKIP"
 | 
			
		||||
 | 
			
		||||
# By default, ufw only touches its own chains. Set this to 'yes' to have ufw
 | 
			
		||||
# manage the built-in chains too. Warning: setting this to 'yes' will break
 | 
			
		||||
# non-ufw managed firewall rules
 | 
			
		||||
MANAGE_BUILTINS=no
 | 
			
		||||
 | 
			
		||||
#
 | 
			
		||||
# IPT backend
 | 
			
		||||
#
 | 
			
		||||
# only enable if using iptables backend
 | 
			
		||||
IPT_SYSCTL=/etc/ufw/sysctl.conf
 | 
			
		||||
 | 
			
		||||
# Extra connection tracking modules to load. Complete list can be found in
 | 
			
		||||
# net/netfilter/Kconfig of your kernel source. Some common modules:
 | 
			
		||||
# nf_conntrack_irc, nf_nat_irc: DCC (Direct Client to Client) support
 | 
			
		||||
# nf_conntrack_netbios_ns: NetBIOS (samba) client support
 | 
			
		||||
# nf_conntrack_pptp, nf_nat_pptp: PPTP over stateful firewall/NAT
 | 
			
		||||
# nf_conntrack_ftp, nf_nat_ftp: active FTP support
 | 
			
		||||
# nf_conntrack_tftp, nf_nat_tftp: TFTP support (server side)
 | 
			
		||||
IPT_MODULES="nf_conntrack_ftp nf_nat_ftp nf_conntrack_netbios_ns"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										37
									
								
								etc_org/default/useradd
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								etc_org/default/useradd
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,37 @@
 | 
			
		||||
# Default values for useradd(8)
 | 
			
		||||
#
 | 
			
		||||
# The SHELL variable specifies the default login shell on your
 | 
			
		||||
# system.
 | 
			
		||||
# Similar to DHSELL in adduser. However, we use "sh" here because
 | 
			
		||||
# useradd is a low level utility and should be as general
 | 
			
		||||
# as possible
 | 
			
		||||
SHELL=/bin/sh
 | 
			
		||||
#
 | 
			
		||||
# The default group for users
 | 
			
		||||
# 100=users on Debian systems
 | 
			
		||||
# Same as USERS_GID in adduser
 | 
			
		||||
# This argument is used when the -n flag is specified.
 | 
			
		||||
# The default behavior (when -n and -g are not specified) is to create a
 | 
			
		||||
# primary user group with the same name as the user being added to the
 | 
			
		||||
# system.
 | 
			
		||||
# GROUP=100
 | 
			
		||||
#
 | 
			
		||||
# The default home directory. Same as DHOME for adduser
 | 
			
		||||
# HOME=/home
 | 
			
		||||
#
 | 
			
		||||
# The number of days after a password expires until the account 
 | 
			
		||||
# is permanently disabled
 | 
			
		||||
# INACTIVE=-1
 | 
			
		||||
#
 | 
			
		||||
# The default expire date
 | 
			
		||||
# EXPIRE=
 | 
			
		||||
#
 | 
			
		||||
# The SKEL variable specifies the directory containing "skeletal" user
 | 
			
		||||
# files; in other words, files such as a sample .profile that will be
 | 
			
		||||
# copied to the new user's home directory when it is created.
 | 
			
		||||
# SKEL=/etc/skel
 | 
			
		||||
#
 | 
			
		||||
# Defines whether the mail spool should be created while
 | 
			
		||||
# creating the account
 | 
			
		||||
# CREATE_MAIL_SPOOL=yes
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								etc_org/default/xrdp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								etc_org/default/xrdp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
# Do we need to start sesman ?
 | 
			
		||||
SESMAN_START=yes
 | 
			
		||||
 | 
			
		||||
# Do we restart xrdp on upgrade ? If not set to no, any xrdp session will
 | 
			
		||||
# be shutdown on upgrade.
 | 
			
		||||
# RESTART_ON_UPGRADE=no
 | 
			
		||||
		Reference in New Issue
	
	Block a user