Skip to content

Commit c8aee56

Browse files
committed
Merge pull request #4 from tedivm/ubuntu_updates
Added apt-get update before provisioning
2 parents 2b750ae + f7361d8 commit c8aee56

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.vagrant
1+
.vagrant
2+
.idea

resources/Scripts/Provision.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ echo 'Provisioning Environment with Dovecot and Test Messages'
77
if which dovecot > /dev/null; then
88
echo 'Dovecot is already installed'
99
else
10+
11+
echo 'Updating apt-get repositories'
12+
sudo apt-get -qq update
13+
14+
1015
echo 'Installing Dovecot'
1116
sudo apt-get -qq -y install dovecot-imapd dovecot-pop3d
1217
sudo touch /etc/dovecot/local.conf

0 commit comments

Comments
 (0)