added shared groups to represent groups managed by server local group actions changed to modify roster groups code cleanup on contacts manager including removing unneeded roster manager update script to clean up localization files removed ui option to create an empty group Former-commit-id: 06a9db4836fa2753a913e2314a8c003380416eac
9 lines
260 B
Bash
Executable file
9 lines
260 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "INFO: update started - removing collaboration local groups localization files"
|
|
|
|
find /awips2/edex/data/utility -type f -regex '.*collaboration/localGroups.xml$' -exec rm -vf {} \;
|
|
|
|
echo "INFO: the update has completed successfully!"
|
|
|
|
exit 0
|