Added Cyg-Win
This commit is contained in:
parent
82cbc206eb
commit
413c315806
10586 changed files with 3806249 additions and 0 deletions
5
Agent-Windows/OGP64/etc/preremove/_autorebase.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/_autorebase.sh
Normal 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!"
|
||||
13
Agent-Windows/OGP64/etc/preremove/base-files-manifest.lst
Normal file
13
Agent-Windows/OGP64/etc/preremove/base-files-manifest.lst
Normal 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
|
||||
25
Agent-Windows/OGP64/etc/preremove/base-files.sh
Normal file
25
Agent-Windows/OGP64/etc/preremove/base-files.sh
Normal 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
|
||||
5
Agent-Windows/OGP64/etc/preremove/ca-certificates.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/ca-certificates.sh
Normal 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
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/coreutils.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/coreutils.sh
Normal 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
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/crypto-policies.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/crypto-policies.sh
Normal 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
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/man-db.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/man-db.sh
Normal 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
|
||||
|
||||
10
Agent-Windows/OGP64/etc/preremove/mariadb-connector-c.sh
Normal file
10
Agent-Windows/OGP64/etc/preremove/mariadb-connector-c.sh
Normal 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
|
||||
|
||||
10
Agent-Windows/OGP64/etc/preremove/mysql.sh
Normal file
10
Agent-Windows/OGP64/etc/preremove/mysql.sh
Normal 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
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/nano.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/nano.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
if [ -f /etc/nanorc ] && cmp -s /etc/defaults/etc/nanorc /etc/nanorc
|
||||
then
|
||||
rm /etc/nanorc
|
||||
fi
|
||||
|
||||
10
Agent-Windows/OGP64/etc/preremove/openssl.sh
Normal file
10
Agent-Windows/OGP64/etc/preremove/openssl.sh
Normal 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
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/openssl10.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/openssl10.sh
Normal 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
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/p11-kit.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/p11-kit.sh
Normal 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
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/screen.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/screen.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
if [ -f /etc/screenrc ] && cmp -s /etc/defaults/etc/screenrc /etc/screenrc
|
||||
then
|
||||
rm /etc/screenrc
|
||||
fi
|
||||
|
||||
5
Agent-Windows/OGP64/etc/preremove/wget.sh
Normal file
5
Agent-Windows/OGP64/etc/preremove/wget.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
if [ -f /etc/wgetrc ] && cmp -s /etc/defaults/etc/wgetrc /etc/wgetrc
|
||||
then
|
||||
rm /etc/wgetrc
|
||||
fi
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue