committing changes in /etc made by "-bash"
Package changes:
This commit is contained in:
@@ -2833,10 +2833,14 @@ maybe chmod 0644 'mke2fs.conf'
|
|||||||
maybe chmod 0755 'mock'
|
maybe chmod 0755 'mock'
|
||||||
maybe chgrp 'mock' 'mock/alma+epel-8-aarch64.cfg'
|
maybe chgrp 'mock' 'mock/alma+epel-8-aarch64.cfg'
|
||||||
maybe chmod 0644 'mock/alma+epel-8-aarch64.cfg'
|
maybe chmod 0644 'mock/alma+epel-8-aarch64.cfg'
|
||||||
|
maybe chgrp 'mock' 'mock/alma+epel-8-ppc64le.cfg'
|
||||||
|
maybe chmod 0644 'mock/alma+epel-8-ppc64le.cfg'
|
||||||
maybe chgrp 'mock' 'mock/alma+epel-8-x86_64.cfg'
|
maybe chgrp 'mock' 'mock/alma+epel-8-x86_64.cfg'
|
||||||
maybe chmod 0644 'mock/alma+epel-8-x86_64.cfg'
|
maybe chmod 0644 'mock/alma+epel-8-x86_64.cfg'
|
||||||
maybe chgrp 'mock' 'mock/almalinux-8-aarch64.cfg'
|
maybe chgrp 'mock' 'mock/almalinux-8-aarch64.cfg'
|
||||||
maybe chmod 0644 'mock/almalinux-8-aarch64.cfg'
|
maybe chmod 0644 'mock/almalinux-8-aarch64.cfg'
|
||||||
|
maybe chgrp 'mock' 'mock/almalinux-8-ppc64le.cfg'
|
||||||
|
maybe chmod 0644 'mock/almalinux-8-ppc64le.cfg'
|
||||||
maybe chgrp 'mock' 'mock/almalinux-8-x86_64.cfg'
|
maybe chgrp 'mock' 'mock/almalinux-8-x86_64.cfg'
|
||||||
maybe chmod 0644 'mock/almalinux-8-x86_64.cfg'
|
maybe chmod 0644 'mock/almalinux-8-x86_64.cfg'
|
||||||
maybe chgrp 'mock' 'mock/amazonlinux-2-aarch64.cfg'
|
maybe chgrp 'mock' 'mock/amazonlinux-2-aarch64.cfg'
|
||||||
@@ -3165,8 +3169,6 @@ maybe chgrp 'mock' 'mock/fedora-eln-x86_64.cfg'
|
|||||||
maybe chmod 0644 'mock/fedora-eln-x86_64.cfg'
|
maybe chmod 0644 'mock/fedora-eln-x86_64.cfg'
|
||||||
maybe chgrp 'mock' 'mock/fedora-rawhide-aarch64.cfg'
|
maybe chgrp 'mock' 'mock/fedora-rawhide-aarch64.cfg'
|
||||||
maybe chmod 0644 'mock/fedora-rawhide-aarch64.cfg'
|
maybe chmod 0644 'mock/fedora-rawhide-aarch64.cfg'
|
||||||
maybe chgrp 'mock' 'mock/fedora-rawhide-armhfp.cfg'
|
|
||||||
maybe chmod 0644 'mock/fedora-rawhide-armhfp.cfg'
|
|
||||||
maybe chgrp 'mock' 'mock/fedora-rawhide-i386.cfg'
|
maybe chgrp 'mock' 'mock/fedora-rawhide-i386.cfg'
|
||||||
maybe chmod 0644 'mock/fedora-rawhide-i386.cfg'
|
maybe chmod 0644 'mock/fedora-rawhide-i386.cfg'
|
||||||
maybe chgrp 'mock' 'mock/fedora-rawhide-ppc64le.cfg'
|
maybe chgrp 'mock' 'mock/fedora-rawhide-ppc64le.cfg'
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -17,6 +17,7 @@ mtab.fuselock
|
|||||||
*.LOCK
|
*.LOCK
|
||||||
network/run
|
network/run
|
||||||
adjtime
|
adjtime
|
||||||
|
udev/hwdb.bin
|
||||||
lvm/cache
|
lvm/cache
|
||||||
lvm/archive
|
lvm/archive
|
||||||
X11/xdm/authdir/authfiles/*
|
X11/xdm/authdir/authfiles/*
|
||||||
|
|||||||
@@ -16,13 +16,13 @@ filter_ignore() {
|
|||||||
listfile="$( mktemp -t etckeeper-$VCS.XXXXXXXXXX )"
|
listfile="$( mktemp -t etckeeper-$VCS.XXXXXXXXXX )"
|
||||||
case "$VCS" in
|
case "$VCS" in
|
||||||
darcs)
|
darcs)
|
||||||
grep -v '^[[:space:]]*\(#\|$\)' "$ignorefile" > "$listfile" || true
|
LC_CTYPE=C grep -v '^[[:space:]]*\(#\|$\)' "$ignorefile" > "$listfile" || true
|
||||||
grep -Evf "$listfile"
|
LC_CTYPE=C grep -Evf "$listfile"
|
||||||
;;
|
;;
|
||||||
git)
|
git)
|
||||||
(git ls-files -oi --exclude-standard; git ls-files -oi --exclude-standard --directory) | sort | uniq > "$listfile" || true
|
(git ls-files -oi --exclude-standard; git ls-files -oi --exclude-standard --directory) | sort | uniq > "$listfile" || true
|
||||||
if [ -s "$listfile" ]; then
|
if [ -s "$listfile" ]; then
|
||||||
sed 's/^\.\///' | grep -xFvf "$listfile"
|
sed 's/^\.\///' | LC_CTYPE=C grep -xFvf "$listfile"
|
||||||
else
|
else
|
||||||
cat -
|
cat -
|
||||||
fi
|
fi
|
||||||
@@ -124,7 +124,7 @@ maybe_chmod_chown() {
|
|||||||
egid=$(id -g)
|
egid=$(id -g)
|
||||||
q="'"
|
q="'"
|
||||||
while read x; do
|
while read x; do
|
||||||
stat=$(stat -c "%f:%u:%g:%a:%U:%G" $x)
|
stat=$(stat -c "%f:%u:%g:%a:%U:%G" "$x")
|
||||||
IFS=":" read mode uid gid perm uname gname <<EOF
|
IFS=":" read mode uid gid perm uname gname <<EOF
|
||||||
$stat
|
$stat
|
||||||
EOF
|
EOF
|
||||||
|
|||||||
@@ -131,6 +131,7 @@ writefile () {
|
|||||||
ignore "*.LOCK"
|
ignore "*.LOCK"
|
||||||
ignore network/run
|
ignore network/run
|
||||||
ignore adjtime
|
ignore adjtime
|
||||||
|
ignore udev/hwdb.bin
|
||||||
ignore lvm/cache
|
ignore lvm/cache
|
||||||
ignore lvm/archive
|
ignore lvm/archive
|
||||||
ignore "X11/xdm/authdir/authfiles/*"
|
ignore "X11/xdm/authdir/authfiles/*"
|
||||||
|
|||||||
6
mock/alma+epel-8-ppc64le.cfg
Normal file
6
mock/alma+epel-8-ppc64le.cfg
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
include('templates/almalinux-8.tpl')
|
||||||
|
include('templates/epel-8.tpl')
|
||||||
|
|
||||||
|
config_opts['root'] = 'alma+epel-8-ppc64le'
|
||||||
|
config_opts['target_arch'] = 'ppc64le'
|
||||||
|
config_opts['legal_host_arches'] = ('ppc64le',)
|
||||||
5
mock/almalinux-8-ppc64le.cfg
Normal file
5
mock/almalinux-8-ppc64le.cfg
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
include('templates/almalinux-8.tpl')
|
||||||
|
|
||||||
|
config_opts['root'] = 'almalinux-8-ppc64le'
|
||||||
|
config_opts['target_arch'] = 'ppc64le'
|
||||||
|
config_opts['legal_host_arches'] = ('ppc64le',)
|
||||||
@@ -1 +0,0 @@
|
|||||||
fedora-rawhide-armhfp.cfg
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
config_opts['target_arch'] = 'armv7hl'
|
|
||||||
config_opts['legal_host_arches'] = ('armv7l', 'armv8l', 'aarch64')
|
|
||||||
|
|
||||||
include('templates/fedora-rawhide.tpl')
|
|
||||||
@@ -98,7 +98,7 @@ enabled=0
|
|||||||
name=CentOS Stream $releasever - Extras packages
|
name=CentOS Stream $releasever - Extras packages
|
||||||
#baseurl=http://mirror.stream.centos.org/SIGs/$releasever-stream/extras/$basearch/extras-common/
|
#baseurl=http://mirror.stream.centos.org/SIGs/$releasever-stream/extras/$basearch/extras-common/
|
||||||
metalink=https://mirrors.centos.org/metalink?repo=centos-extras-sig-extras-common-$releasever-stream&arch=$basearch
|
metalink=https://mirrors.centos.org/metalink?repo=centos-extras-sig-extras-common-$releasever-stream&arch=$basearch
|
||||||
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-SIG-Extras
|
gpgkey=file:///usr/share/distribution-gpg-keys/centos/RPM-GPG-KEY-CentOS-SIG-Extras-SHA512
|
||||||
gpgcheck=1
|
gpgcheck=1
|
||||||
enabled=1
|
enabled=1
|
||||||
skip_if_unavailable=False
|
skip_if_unavailable=False
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ proxy_user =
|
|||||||
# password for basic http proxy auth, if needed
|
# password for basic http proxy auth, if needed
|
||||||
proxy_password =
|
proxy_password =
|
||||||
|
|
||||||
# host/domain suffix blacklist for proxy, if needed
|
# host/domain suffix blocklist for proxy, if needed
|
||||||
no_proxy =
|
no_proxy =
|
||||||
|
|
||||||
[rhsm]
|
[rhsm]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
06e4c548ce738335fc48192f279ecf41bf778d6eced7291c554b5536033ea0912d55c0b99e06375624da3bb919efb3f23912239e9253c8073b67be806e65552b
|
81046d058f63ea58462fbdbb387ccb02f51dcdb86e1b6b71b6823b9b720779770d2e62a5da1025170eb675570c484f65b25b9f1c761dc80231d47fb04344fb21
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user