Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ox-installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
QA
ox-installer
Commits
389a661c
Commit
389a661c
authored
5 years ago
by
benedikt.kroening
Browse files
Options
Downloads
Patches
Plain Diff
Removed slipped in files, small fixes to dovecot.sh
parent
c15f1c3a
No related branches found
Branches containing commit
No related tags found
1 merge request
!7
Issue16 7102
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
features/.codecept.sh.swp
+0
-0
0 additions, 0 deletions
features/.codecept.sh.swp
features/dovecot.sh
+5
-8
5 additions, 8 deletions
features/dovecot.sh
lib/dovecot.bash
+0
-47
0 additions, 47 deletions
lib/dovecot.bash
with
5 additions
and
55 deletions
features/.codecept.sh.swp
deleted
100644 → 0
+
0
−
0
View file @
c15f1c3a
File deleted
This diff is collapsed.
Click to expand it.
features/dovecot.sh
+
5
−
8
View file @
389a661c
...
@@ -28,7 +28,6 @@ SCRIPT_DIR="$( cd "$(dirname "$0")" ; pwd -P)"
...
@@ -28,7 +28,6 @@ SCRIPT_DIR="$( cd "$(dirname "$0")" ; pwd -P)"
# sourcing some commonly used functions and executing basic checks
# sourcing some commonly used functions and executing basic checks
source
${
SCRIPT_DIR
}
/../lib/common.bash
source
${
SCRIPT_DIR
}
/../lib/common.bash
source
${
SCRIPT_DIR
}
/../lib/setup.bash
source
${
SCRIPT_DIR
}
/../lib/setup.bash
source
${
SCRIPT_DIR
}
/../lib/dovecot.bash
checkRootPrivileges
checkRootPrivileges
detectDistribution
detectDistribution
...
@@ -81,10 +80,6 @@ case $key in
...
@@ -81,10 +80,6 @@ case $key in
shift
shift
shift
shift
;;
;;
--restart
)
RESTART_OX
=
true
shift
;;
*
)
# unknown option
*
)
# unknown option
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
POSITIONAL+
=(
"
$1
"
)
# save it in an array for later
shift
shift
...
@@ -184,6 +179,10 @@ if [ ! -f ${INIT_STATE_FILE} ]; then
...
@@ -184,6 +179,10 @@ if [ ! -f ${INIT_STATE_FILE} ]; then
# set home permissions every time ...
# set home permissions every time ...
chown
-R
vmail:vmail /home/vmail
chown
-R
vmail:vmail /home/vmail
chmod
2770 /home/vmail
chmod
2770 /home/vmail
restartService postfix
restartService dovecot
fi
fi
elif
[[
"
${
FEATURE_ENABLE
}
"
=
false
]]
;
then
elif
[[
"
${
FEATURE_ENABLE
}
"
=
false
]]
;
then
INPUT
=
${
SCRIPT_DIR
}
/../config/environment/qa/users.csv
INPUT
=
${
SCRIPT_DIR
}
/../config/environment/qa/users.csv
...
@@ -218,7 +217,5 @@ elif [[ "${FEATURE_ENABLE}" = true ]]; then
...
@@ -218,7 +217,5 @@ elif [[ "${FEATURE_ENABLE}" = true ]]; then
done
<
$INPUT
done
<
$INPUT
IFS
=
$OLDIFS
IFS
=
$OLDIFS
fi
fi
if
[[
"
${
RESTART_OX
}
"
=
true
]]
;
then
restartService dovecot
fi
This diff is collapsed.
Click to expand it.
lib/dovecot.bash
deleted
100644 → 0
+
0
−
47
View file @
c15f1c3a
#
# Copyright (C) 2019 OX Software GmbH
#
# This file is part of OX Automation.
#
# OX Automation is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OX Automation is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OX Automation. If not, see <http://www.gnu.org/licenses/>.
#
#
# Authors:
# Daniel Pondruff <daniel.pondruff@open-xchange.com>
#
# This restarts the provided service name with the configured service managers
function
installDovecot
{
echo
"Add Dovecot Build key & Repo"
wget https://repo.dovecot.org/DOVECOT-REPO-GPG
&&
apt-key add DOVECOT-REPO-GPG
&&
\
echo
"deb https://repo.dovecot.org/ce-2.3-latest/debian/stretch stretch main"
>
/etc/apt/sources.list.d/dovecot.list
echo
"Install Dovecot CE packages"
apt-get update
&&
apt-get
install
-y
dovecot-core
\
dovecot-imapd
\
dovecot-lmtpd
\
dovecot-managesieved
\
dovecot-sieve
\
dovecot-pop3d
\
dovecot-ldap
\
postfix
\
rsyslog
echo
"Copy Dovecot Configs"
rm
-rf
/etc/dovecot/
*
cp
-R
config/dovecot/etc/dovecot/
*
/etc/dovecot/
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment