Commit ca129ce1ebb80cbd863c68a8e9dcc51aa81f8dd5
1 parent
ba4adaa7
Exists in
master
and in
39 other branches
Creating mail alias
Showing
1 changed file
with
7 additions
and
2 deletions
Show diff stats
puppet/modules/colab/manifests/init.pp
1 | 1 | ||
2 | class colab { | 2 | class colab { |
3 | + # Common | ||
3 | include ps1 | 4 | include ps1 |
4 | include vim | 5 | include vim |
5 | include ntp | 6 | include ntp |
@@ -8,7 +9,6 @@ class colab { | @@ -8,7 +9,6 @@ class colab { | ||
8 | include postfix | 9 | include postfix |
9 | 10 | ||
10 | include supervisor | 11 | include supervisor |
11 | - | ||
12 | include colab::requirements | 12 | include colab::requirements |
13 | 13 | ||
14 | user { 'colab': | 14 | user { 'colab': |
@@ -16,4 +16,9 @@ class colab { | @@ -16,4 +16,9 @@ class colab { | ||
16 | managehome => true, | 16 | managehome => true, |
17 | shell => '/bin/bash', | 17 | shell => '/bin/bash', |
18 | } | 18 | } |
19 | -} | ||
20 | \ No newline at end of file | 19 | \ No newline at end of file |
20 | + | ||
21 | + mailalias { 'colab': | ||
22 | + ensure => present, | ||
23 | + recipient => 'root', | ||
24 | + } | ||
25 | +} |