1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-21 18:50:38 +03:00

0.0.2-alt1

- Removed hreg dependency
- Introduced caches for SIDs and Registry.pol file paths
- gpupdate transformed into simple gpoa starter
- gpoa learned to work with username
- Introduced TDB manager in order to work with samba-regedit registry
- DC domain detection now uses native python-samba functions to query LDAP
This commit is contained in:
Игорь Чудов 2019-11-15 12:54:31 +04:00
parent 2c20e135e1
commit 859a41d481
Signed by untrusted user: nir
GPG Key ID: 0F3883600CAE7AAC

View File

@ -1,7 +1,7 @@
%define _unpackaged_files_terminate_build 1
Name: gpupdate
Version: 0.0.1
Version: 0.0.2
Release: alt1
Summary: GPT applier
@ -10,7 +10,6 @@ Group: Other
Url: http://git.altlinux.org/
BuildArch: noarch
Requires: hreg
Requires: control
Requires: samba-dc
@ -25,6 +24,11 @@ GPT applier
%install
install -pD -m755 gpupdate \
%buildroot%_bindir/gpupdate
mkdir -p %buildroot/var/cache/samba
install -pD -m644 gpoa/cache.pkl \
%buildroot/var/cache/samba
install -pD -m644 gpoa/sid_cache.pkl \
%buildroot/var/cache/samba
mkdir -p \
%buildroot%prefix/libexec
cp -r gpoa \
@ -33,8 +37,18 @@ cp -r gpoa \
%files
%prefix/bin/gpupdate
%prefix/libexec/gpoa
/var/cache/samba/cache.pkl
/var/cache/samba/sid_cache.pkl
%changelog
* Fri Nov 15 2019 Igor Chudov <nir@altlinux.org> 0.0.2-alt1
- Removed hreg dependency
- Introduced caches for SIDs and Registry.pol file paths
- gpupdate transformed into simple gpoa starter
- gpoa learned to work with username
- Introduced TDB manager in order to work with samba-regedit registry
- DC domain detection now uses native python-samba functions to query LDAP
* Thu Nov 14 2019 Igor Chudov <nir@altlinux.org> 0.0.1-alt1
- Initial release