-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a7149b
commit 04b80a5
Showing
5 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
ldap-account-manager (8.5.RC1-1) unstable; urgency=medium | ||
|
||
* new upstream release | ||
* Fix "Multiple embeded and minified javascript library" by linking | ||
directory (Closes: #1042528) | ||
|
||
-- Roland Gruber <[email protected]> Fri, 08 Sep 2023 16:01:22 +0200 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
if [ "$1" != "upgrade" ]; then | ||
exit 0 | ||
fi | ||
|
||
# 3rd party libs | ||
jsThirdPartyLibs='ckeditor jstree' | ||
for jsThirdPartyLib in $jsThirdPartyLibs; do | ||
if [ -L /usr/share/ldap-account-manager/templates/lib/extra/${jsThirdPartyLib} ] ; then | ||
rm /usr/share/ldap-account-manager/templates/lib/extra/${jsThirdPartyLib} | ||
fi | ||
done | ||
|
||
#DEBHELPER# |