mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
* update platform code * refresh patches * bump dependencies * create /run/ipa, /run/ipa_memcached on postinst so installer works OOTB * split tmpfiles.d conf for client and server * clean up cruft on purge * add new files to install * rename ipa-memcached to ipa_memcached to match upstream * link customizable web files to /etc/ipa/html * fix apache module enabling and disabling in postinst/prerm * fix apache ipa.conf paths * don't bother installing any apache configs, installer creates and removes them
9 lines
88 B
Bash
9 lines
88 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ ! -e /run/ipa ]; then
|
|
mkdir -m 0700 /run/ipa
|
|
fi
|
|
|
|
#DEBHELPER#
|