Commit 181a5482c8a32e792b86abb5e352c41bb1343ae8

Authored by Sergio Oliveira
2 parents 9f9b1457 32406b9c

Merge branch 'master' of beta.softwarepublico.gov.br:softwarepublico/colab

Showing 2 changed files with 3 additions and 3 deletions   Show diff stats
1 %define name colab 1 %define name colab
2 %define version 2.0a2 2 %define version 2.0a2
3 %define unmangled_version 2.0a2 3 %define unmangled_version 2.0a2
4 -%define release 1 4 +%define release 2
5 %define buildvenv /var/tmp/%{name}-%{version} 5 %define buildvenv /var/tmp/%{name}-%{version}
6 6
7 Summary: Collaboration platform for communities 7 Summary: Collaboration platform for communities
@@ -54,7 +54,7 @@ cat > %{buildroot}/%{_bindir}/colab-admin <<EOF @@ -54,7 +54,7 @@ cat > %{buildroot}/%{_bindir}/colab-admin <<EOF
54 #!/bin/sh 54 #!/bin/sh
55 set -e 55 set -e
56 56
57 -if [ "$USER" = colab ]; then 57 +if [ "\$USER" = colab ]; then
58 exec /usr/lib/colab/bin/colab-admin "\$@" 58 exec /usr/lib/colab/bin/colab-admin "\$@"
59 else 59 else
60 exec sudo -u colab /usr/lib/colab/bin/colab-admin "\$@" 60 exec sudo -u colab /usr/lib/colab/bin/colab-admin "\$@"
colab/settings.py
@@ -251,7 +251,7 @@ MESSAGE_TAGS = { @@ -251,7 +251,7 @@ MESSAGE_TAGS = {
251 COLAB_HOME_URL = '/dashboard' 251 COLAB_HOME_URL = '/dashboard'
252 252
253 # Super Archives 253 # Super Archives
254 -SUPER_ARCHIVES_PATH = '/var/lib/mailman/archives/public' 254 +SUPER_ARCHIVES_PATH = '/var/lib/mailman/archives/private'
255 SUPER_ARCHIVES_EXCLUDE = [] 255 SUPER_ARCHIVES_EXCLUDE = []
256 SUPER_ARCHIVES_LOCK_FILE = '/var/lock/colab/import_emails.lock' 256 SUPER_ARCHIVES_LOCK_FILE = '/var/lock/colab/import_emails.lock'
257 257