Added Cyg-Win

This commit is contained in:
Frank Harris 2026-06-06 18:46:40 -04:00
parent 82cbc206eb
commit 413c315806
10586 changed files with 3806249 additions and 0 deletions

View file

@ -0,0 +1,5 @@
#!/bin/dash
export PATH=/bin
b=/var/cache/rebase
echo -n "_autorebase cache directory ${b} removal... "
rm -rf "${b}" && echo "succeeded!" || echo "failed!"

View file

@ -0,0 +1,13 @@
Cygwin.bat
etc/profile.d/lang.sh
etc/profile.d/lang.csh
etc/profile.d/tzset.sh
etc/profile.d/tzset.csh
etc/profile
etc/shells
etc/bash.bashrc
etc/bash.bash_logout
etc/skel/.bashrc
etc/skel/.inputrc
etc/skel/.bash_profile
etc/skel/.profile

View file

@ -0,0 +1,25 @@
#!/usr/bin/sh
# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide. This software is distributed without any warranty.
# You should have received a copy of the CC0 Public Domain Dedication along
# with this software.
# If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
# base-files version 4.3-3
MANIFEST="/etc/preremove/base-files-manifest.lst"
[ -f ${MANIFEST} ] || (echo "Unable to find manifest file." && exit 1)
echo "*** Removing unmodified base files."
echo "*** These will be updated by the postinstall script."
echo "*** Please wait."
while read f; do
/usr/bin/cmp -s "/${f}" "/etc/defaults/${f}" && \
(echo "/${f} hasn't been modified, it will be updated." ; \
/usr/bin/rm -f "/${f}")
done < ${MANIFEST}
exit 0

View file

@ -0,0 +1,5 @@
if [ -f /etc/pki/ca-trust/ca-legacy.conf ] && cmp -s /etc/defaults/etc/pki/ca-trust/ca-legacy.conf /etc/pki/ca-trust/ca-legacy.conf
then
rm /etc/pki/ca-trust/ca-legacy.conf
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/DIR_COLORS ] && cmp -s /etc/defaults/etc/DIR_COLORS /etc/DIR_COLORS
then
rm /etc/DIR_COLORS
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/crypto-policies/config ] && cmp -s /etc/defaults/etc/crypto-policies/config /etc/crypto-policies/config
then
rm /etc/crypto-policies/config
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/man_db.conf ] && cmp -s /etc/defaults/etc/man_db.conf /etc/man_db.conf
then
rm /etc/man_db.conf
fi

View file

@ -0,0 +1,10 @@
if [ -f /etc/my.cnf ] && cmp -s /etc/defaults/etc/my.cnf /etc/my.cnf
then
rm /etc/my.cnf
fi
if [ -f /etc/my.cnf.d/client.cnf ] && cmp -s /etc/defaults/etc/my.cnf.d/client.cnf /etc/my.cnf.d/client.cnf
then
rm /etc/my.cnf.d/client.cnf
fi

View file

@ -0,0 +1,10 @@
if [ -f /etc/my.cnf.d/mysql-clients.cnf ] && cmp -s /etc/defaults/etc/my.cnf.d/mysql-clients.cnf /etc/my.cnf.d/mysql-clients.cnf
then
rm /etc/my.cnf.d/mysql-clients.cnf
fi
if [ -f /etc/my.cnf.d/server.cnf ] && cmp -s /etc/defaults/etc/my.cnf.d/server.cnf /etc/my.cnf.d/server.cnf
then
rm /etc/my.cnf.d/server.cnf
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/nanorc ] && cmp -s /etc/defaults/etc/nanorc /etc/nanorc
then
rm /etc/nanorc
fi

View file

@ -0,0 +1,10 @@
if [ -f /etc/pki/tls/ct_log_list.cnf ] && cmp -s /etc/defaults/etc/pki/tls/ct_log_list.cnf /etc/pki/tls/ct_log_list.cnf
then
rm /etc/pki/tls/ct_log_list.cnf
fi
if [ -f /etc/pki/tls/openssl.cnf ] && cmp -s /etc/defaults/etc/pki/tls/openssl.cnf /etc/pki/tls/openssl.cnf
then
rm /etc/pki/tls/openssl.cnf
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/pki/tls/openssl10.cnf ] && cmp -s /etc/defaults/etc/pki/tls/openssl10.cnf /etc/pki/tls/openssl10.cnf
then
rm /etc/pki/tls/openssl10.cnf
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/pkcs11/pkcs11.conf ] && cmp -s /etc/defaults/etc/pkcs11/pkcs11.conf /etc/pkcs11/pkcs11.conf
then
rm /etc/pkcs11/pkcs11.conf
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/screenrc ] && cmp -s /etc/defaults/etc/screenrc /etc/screenrc
then
rm /etc/screenrc
fi

View file

@ -0,0 +1,5 @@
if [ -f /etc/wgetrc ] && cmp -s /etc/defaults/etc/wgetrc /etc/wgetrc
then
rm /etc/wgetrc
fi