35ba231dc0
- Remove manpages patch and keep modified man pages as Source files - Improve dhclient.8 man page to list options in a style consistent with most other man pages on the planet - Upgrade to latest dhcp LDAP patch, which brings in a new dhcpd-conf-to-ldap script, updated schema file, and other bug fixes including SSL support for LDAP authentication (#375711) - Do not run dhcpd and dhcrelay services by default (#362321)
27 lines
587 B
Bash
Executable File
27 lines
587 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Fetch latest version of LDAP patch. The patch is downloaded and split in
|
|
# the ldap/ subdirectory. It is up to the packager to merge the updates with
|
|
# the RPM.
|
|
#
|
|
# Upstream: http://home.ntelos.net/~masneyb/
|
|
#
|
|
# David Cantrell <dcantrell@redhat.com>
|
|
#
|
|
|
|
CWD=$(pwd)
|
|
|
|
rm -f masneyb.html-$$
|
|
wget -O masneyb.html-$$ http://home.ntelos.net/~masneyb
|
|
p="$(grep "ldap-patch" masneyb.html-$$ | cut -d '>' -f 3 | cut -d '<' -f 1)"
|
|
rm -f masneyb.html-$$
|
|
|
|
rm -rf ldap/
|
|
mkdir -p ldap/
|
|
cd ldap/
|
|
wget -N http://home.ntelos.net/~masneyb/$p
|
|
splitdiff -a -d $p
|
|
rm -f $p
|
|
|
|
rm -f *_debian_*
|