Initial commit
commit
6aa80fbb69
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,3 @@
|
||||
proc /proc proc defaults 0 0
|
||||
PARTUUID=1f048067-01 /boot vfat defaults 0 2
|
||||
PARTUUID=1f048067-02 / ext4 defaults,noatime 0 1
|
@ -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
|
@ -0,0 +1,22 @@
|
||||
# On systems with systemd running, we expect the agent to be launched
|
||||
# via systemd's user mode (see
|
||||
# /usr/lib/systemd/user/gpg-agent.{socket,service} and
|
||||
# systemd.unit(5)). This allows systemd to clean up the agent
|
||||
# automatically at logout.
|
||||
|
||||
# If systemd is absent from your system, or you do not permit it to
|
||||
# run in user mode, then you may need to manually launch gpg-agent
|
||||
# from your session initialization with something like "gpgconf
|
||||
# --launch gpg-agent"
|
||||
|
||||
# Nonetheless, ssh and older versions of gpg require environment
|
||||
# variables to be set in order to find the agent, so we will set those
|
||||
# here.
|
||||
|
||||
agent_sock=$(gpgconf --list-dirs agent-socket)
|
||||
export GPG_AGENT_INFO=${agent_sock}:0:1
|
||||
if [ -n "$(gpgconf --list-options gpg-agent | \
|
||||
awk -F: '/^enable-ssh-support:/{ print $10 }')" ]; then
|
||||
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
||||
fi
|
||||
|
@ -0,0 +1,85 @@
|
||||
# /etc/adduser.conf: `adduser' configuration.
|
||||
# See adduser(8) and adduser.conf(5) for full documentation.
|
||||
|
||||
# The DSHELL variable specifies the default login shell on your
|
||||
# system.
|
||||
DSHELL=/bin/bash
|
||||
|
||||
# The DHOME variable specifies the directory containing users' home
|
||||
# directories.
|
||||
DHOME=/home
|
||||
|
||||
# If GROUPHOMES is "yes", then the home directories will be created as
|
||||
# /home/groupname/user.
|
||||
GROUPHOMES=no
|
||||
|
||||
# If LETTERHOMES is "yes", then the created home directories will have
|
||||
# an extra directory - the first letter of the user name. For example:
|
||||
# /home/u/user.
|
||||
LETTERHOMES=no
|
||||
|
||||
# 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
|
||||
|
||||
# FIRST_SYSTEM_[GU]ID to LAST_SYSTEM_[GU]ID inclusive is the range for UIDs
|
||||
# for dynamically allocated administrative and system accounts/groups.
|
||||
# Please note that system software, such as the users allocated by the base-passwd
|
||||
# package, may assume that UIDs less than 100 are unallocated.
|
||||
FIRST_SYSTEM_UID=100
|
||||
LAST_SYSTEM_UID=999
|
||||
|
||||
FIRST_SYSTEM_GID=100
|
||||
LAST_SYSTEM_GID=999
|
||||
|
||||
# FIRST_[GU]ID to LAST_[GU]ID inclusive is the range of UIDs of dynamically
|
||||
# allocated user accounts/groups.
|
||||
FIRST_UID=1000
|
||||
LAST_UID=59999
|
||||
|
||||
FIRST_GID=1000
|
||||
LAST_GID=59999
|
||||
|
||||
# The USERGROUPS variable can be either "yes" or "no". If "yes" each
|
||||
# created user will be given their own group to use as a default. If
|
||||
# "no", each created user will be placed in the group whose gid is
|
||||
# USERS_GID (see below).
|
||||
USERGROUPS=yes
|
||||
|
||||
# If USERGROUPS is "no", then USERS_GID should be the GID of the group
|
||||
# `users' (or the equivalent group) on your system.
|
||||
USERS_GID=100
|
||||
|
||||
# If DIR_MODE is set, directories will be created with the specified
|
||||
# mode. Otherwise the default mode 0755 will be used.
|
||||
DIR_MODE=0755
|
||||
|
||||
# If SETGID_HOME is "yes" home directories for users with their own
|
||||
# group the setgid bit will be set. This was the default for
|
||||
# versions << 3.13 of adduser. Because it has some bad side effects we
|
||||
# no longer do this per default. If you want it nevertheless you can
|
||||
# still set it here.
|
||||
SETGID_HOME=no
|
||||
|
||||
# If QUOTAUSER is set, a default quota will be set from that user with
|
||||
# `edquota -p QUOTAUSER newuser'
|
||||
QUOTAUSER=""
|
||||
|
||||
# If SKEL_IGNORE_REGEX is set, adduser will ignore files matching this
|
||||
# regular expression when creating a new home directory
|
||||
SKEL_IGNORE_REGEX="dpkg-(old|new|dist|save)"
|
||||
|
||||
# Set this if you want the --add_extra_groups option to adduser to add
|
||||
# new users to other groups.
|
||||
# This is the list of groups that new non-system users will be added to
|
||||
# Default:
|
||||
#EXTRA_GROUPS="dialout cdrom floppy audio video plugdev users"
|
||||
|
||||
# If ADD_EXTRA_GROUPS is set to something non-zero, the EXTRA_GROUPS
|
||||
# option above will be default behavior for adding new, non-system users
|
||||
#ADD_EXTRA_GROUPS=1
|
||||
|
||||
|
||||
# check user and group names also against this regular expression.
|
||||
#NAME_REGEX="^[a-z][-a-z0-9_]*\$"
|
@ -0,0 +1,2 @@
|
||||
Please read the update-alternatives(8) man page for information on this
|
||||
directory and its contents.
|
@ -0,0 +1 @@
|
||||
/usr/bin/aptitude-curses
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/cs/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/de/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/es/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/fi/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/fr/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/gl/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/it/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/ja/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/pl/man8/aptitude-curses.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/gawk
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/gawk.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man7/bash-builtins.7.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/g++
|
@ -0,0 +1 @@
|
||||
/usr/bin/c89-gcc
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/c89-gcc.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/c99-gcc
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/c99-gcc.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/gcc
|
@ -0,0 +1 @@
|
||||
/usr/bin/cpp
|
@ -0,0 +1 @@
|
||||
/sbin/dhcpcd5
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man8/dhcpcd5.8.gz
|
@ -0,0 +1 @@
|
||||
/bin/nano
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/nano.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/vim.nox
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/vim.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/fr/man1/vim.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/it/man1/vim.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/ja/man1/vim.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/pl/man1/vim.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/ru/man1/vim.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/faked-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/es/man1/faked-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/fr/man1/faked-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/sv/man1/faked-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/fakeroot-sysv
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/fakeroot-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/es/man1/fakeroot-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/fr/man1/fakeroot-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/sv/man1/fakeroot-sysv.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/bsd-from
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/bsd-from.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/lib/arm-linux-gnueabihf/cifs-utils/idmapwb.so
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man8/idmapwb.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/info
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/info.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/lft.db
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/lft.db.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/luac5.1
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/luac5.1.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/lua5.1
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/lua5.1.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzcat
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzcat.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzcmp
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzcmp.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzdiff
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzdiff.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzegrep
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzegrep.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzfgrep
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzfgrep.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzgrep
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzgrep.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzless
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzless.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xz
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xz.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/xzmore
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/xzmore.1.gz
|
@ -0,0 +1 @@
|
||||
/bin/mt-gnu
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/mt-gnu.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/gawk
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/gawk.1.gz
|
@ -0,0 +1 @@
|
||||
/bin/nc.openbsd
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/nc_openbsd.1.gz
|
@ -0,0 +1 @@
|
||||
/bin/nc.openbsd
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/nc_openbsd.1.gz
|
@ -0,0 +1 @@
|
||||
/bin/less
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/less.1.gz
|
@ -0,0 +1 @@
|
||||
/bin/nano
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/nano.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/pinentry-curses
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/pinentry-curses.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/scp
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/scp.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/slogin
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/slogin.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/sbin/rmt-tar
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man8/rmt-tar.8.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/ssh
|
@ -0,0 +1 @@
|
||||
/usr/share/man/man1/ssh.1.gz
|
@ -0,0 +1 @@
|
||||
/usr/bin/vim.nox
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue