Skip to content
Snippets Groups Projects
Commit 65f1aa88 authored by Filip Strömbäck's avatar Filip Strömbäck
Browse files

Merge remote-tracking branch 'origin/production' into devel

Conflicts:
	manifests/init.pp
parents 966cd3a7 ef2602f2
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
// ^.* false // ^.* false
^https?://www\.ida\.liu\.se/edu/ugrad/datortenta/OpenDSA/Books/TDDD86_200317/.* true
^https?://www\.ida\.liu\.se/edu/ugrad/datortenta/OpenDSA/Books/.* false ^https?://www\.ida\.liu\.se/edu/ugrad/datortenta/OpenDSA/Books/.* false
^https?://www\.ida\.liu\.se/edu/ugrad/datortenta/OpenDSA/lib/.* true ^https?://www\.ida\.liu\.se/edu/ugrad/datortenta/OpenDSA/lib/.* true
^https?://www\.ida\.liu\.se/edu/ugrad/datortenta/OpenDSA/JSAV/.* true ^https?://www\.ida\.liu\.se/edu/ugrad/datortenta/OpenDSA/JSAV/.* true
......
...@@ -48,6 +48,15 @@ class aes { ...@@ -48,6 +48,15 @@ class aes {
content => file("${module_name}/update_repo.sh"), content => file("${module_name}/update_repo.sh"),
} }
# File to easily see when Puppet was last executed.
# Ideally, we would like to know if it is devel or production as well.
exec { '/usr/bin/touch /var/last_puppet_run' :
cwd => "/var",
creates => "/var/last_puppet_run",
user => root,
group => root,
}
::users::liu_user { 'klaar36': ::users::liu_user { 'klaar36':
commonname => 'Klas Arvidsson', commonname => 'Klas Arvidsson',
shell => '/bin/bash', shell => '/bin/bash',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment