Skip to content
Snippets Groups Projects
Commit fd176f03 authored by Magnus Svensson's avatar Magnus Svensson
Browse files

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

parents 3fdaab52 2c625b2d
No related branches found
No related tags found
2 merge requests!31Merge branch 'remove-henhe83' into 'devel',!30Merge branch 'cherry-pick-b940cfc1' into 'test'
Pipeline #95209 passed
This commit is part of merge request !31. Comments created here will be created in the context of that merge request.
Showing
with 183 additions and 59 deletions
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/puppet
{ {
"name": "Puppet Development Kit (Community)", "name": "Puppet Development Kit (Community)",
"dockerFile": "Dockerfile", "dockerFile": "Dockerfile",
// Set *default* container specific settings.json values on container create.
"settings": { "settings": {
"terminal.integrated.shell.linux": "/bin/bash" "terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
}
}
}, },
// Add the IDs of extensions you want installed when the container is created.
"extensions": [ "extensions": [
"puppet.puppet-vscode", "puppet.puppet-vscode",
"rebornix.Ruby" "rebornix.Ruby"
] ]
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pdk --version",
} }
...@@ -4,7 +4,7 @@ require: ...@@ -4,7 +4,7 @@ require:
- rubocop-rspec - rubocop-rspec
AllCops: AllCops:
DisplayCopNames: true DisplayCopNames: true
TargetRubyVersion: '2.4' TargetRubyVersion: '2.5'
Include: Include:
- "**/*.rb" - "**/*.rb"
Exclude: Exclude:
......
...@@ -13,28 +13,39 @@ def location_for(place_or_version, fake_version = nil) ...@@ -13,28 +13,39 @@ def location_for(place_or_version, fake_version = nil)
end end
end end
ruby_version_segments = Gem::Version.new(RUBY_VERSION.dup).segments
minor_version = ruby_version_segments[0..1].join('.')
group :development do group :development do
gem "json", '= 2.0.4', require: false if Gem::Requirement.create('~> 2.4.2').satisfied_by?(Gem::Version.new(RUBY_VERSION.dup)) gem "json", '= 2.1.0', require: false if Gem::Requirement.create(['>= 2.5.0', '< 2.7.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "json", '= 2.1.0', require: false if Gem::Requirement.create(['>= 2.5.0', '< 2.7.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup)) gem "json", '= 2.3.0', require: false if Gem::Requirement.create(['>= 2.7.0', '< 3.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "json", '= 2.3.0', require: false if Gem::Requirement.create(['>= 2.7.0', '< 2.8.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup)) gem "json", '= 2.5.1', require: false if Gem::Requirement.create(['>= 3.0.0', '< 3.0.5']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "puppet-module-posix-default-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby] gem "json", '= 2.6.1', require: false if Gem::Requirement.create(['>= 3.1.0', '< 3.1.3']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "puppet-module-posix-dev-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby] gem "json", '= 2.6.3', require: false if Gem::Requirement.create(['>= 3.2.0', '< 4.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "puppet-module-win-default-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw] gem "voxpupuli-puppet-lint-plugins", '~> 3.1', require: false
gem "puppet-module-win-dev-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw] gem "facterdb", '~> 1.18', require: false
gem "puppet-lint-absolute_classname-check", '3.0.1', require: false gem "metadata-json-lint", '>= 2.0.2', '< 4.0.0', require: false
gem "puppet-lint-absolute_template_path", '1.0.1', require: false gem "puppetlabs_spec_helper", '>= 3.0.0', '< 5.0.0', require: false
gem "puppet-lint-empty_trailing_lines", '0.0.1', require: false gem "rspec-puppet-facts", '~> 2.0', require: false
gem "puppet-lint-file_ensure-check", '1.0.0', require: false gem "codecov", '~> 0.2', require: false
gem "puppet-lint-strict_indent-check", '2.0.8', require: false gem "dependency_checker", '~> 0.2', require: false
gem "puppet-lint-trailing_comma-check", '0.4.2', require: false gem "parallel_tests", '~> 3.4', require: false
gem "puppet-lint-unquoted_string-check", '2.1.0', require: false gem "pry", '~> 0.10', require: false
gem "simplecov-console", '~> 0.5', require: false
gem "puppet-debugger", '~> 1.0', require: false
gem "rubocop", '= 1.6.1', require: false
gem "rubocop-performance", '= 1.9.1', require: false
gem "rubocop-rspec", '= 2.0.1', require: false
gem "rb-readline", '= 0.5.5', require: false, platforms: [:mswin, :mingw, :x64_mingw]
gem "concurrent-ruby", '< 1.2.0', require: false
gem "puppet-lint-absolute_classname-check", '>= 3.0.1', require: false
gem "puppet-lint-absolute_template_path", '>= 1.0.1', require: false
gem "puppet-lint-empty_trailing_lines", '>= 0.0.1', require: false
gem "puppet-lint-file_ensure-check", '>= 1.0.0', require: false
gem "puppet-lint-strict_indent-check", '>= 2.0.8', require: false
gem "puppet-lint-trailing_comma-check", '>= 0.4.3', require: false
gem "puppet-lint-unquoted_string-check", '>= 2.1.0', require: false
end end
group :system_tests do group :system_tests do
gem "puppet-module-posix-system-r#{minor_version}", '~> 1.0', require: false, platforms: [:ruby] gem "puppet_litmus", '< 1.0.0', require: false, platforms: [:ruby]
gem "puppet-module-win-system-r#{minor_version}", '~> 1.0', require: false, platforms: [:mswin, :mingw, :x64_mingw] gem "serverspec", '~> 2.41', require: false
end end
puppet_version = ENV['PUPPET_GEM_VERSION'] puppet_version = ENV['PUPPET_GEM_VERSION']
......
...@@ -43,6 +43,7 @@ end ...@@ -43,6 +43,7 @@ end
PuppetLint.configuration.send('disable_relative') PuppetLint.configuration.send('disable_relative')
if Bundler.rubygems.find_name('github_changelog_generator').any? if Bundler.rubygems.find_name('github_changelog_generator').any?
GitHubChangelogGenerator::RakeTask.new :changelog do |config| GitHubChangelogGenerator::RakeTask.new :changelog do |config|
raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil? raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil?
......
...@@ -25,3 +25,15 @@ aes::auth::keytab_devel: > ...@@ -25,3 +25,15 @@ aes::auth::keytab_devel: >
6BI72YBgvod9N9z6P2iH0gFVVazciWTHVNcL4qZN4UHGDeBu5MH1wvTBZPpC 6BI72YBgvod9N9z6P2iH0gFVVazciWTHVNcL4qZN4UHGDeBu5MH1wvTBZPpC
IcAIbgvoQbriFHLJiL9HIWl6GSe6I/jp9n5veEkhHdT3M0nEEc0hbKWBaELj IcAIbgvoQbriFHLJiL9HIWl6GSe6I/jp9n5veEkhHdT3M0nEEc0hbKWBaELj
gTDWfQoET9V1Lrtv] gTDWfQoET9V1Lrtv]
aes::tal_cli::credentials: >
ENC[PKCS7,MIIBiQYJKoZIhvcNAQcDoIIBejCCAXYCAQAxggEhMIIBHQIBAD
AFMAACAQEwDQYJKoZIhvcNAQEBBQAEggEAii6nHpFM6+6aPuw1Qnawf77K7f
C5I+XqUJJBFxdiKq1VKDlcM3mme+MlB6cR7+GYYN1VRc7bQSTbmA80bdryBQ
zutD8KOvNWDytmdZhnDiboQEqSyuabdHjTlWRRONcENgMni5Vobmkr45JNDT
5PQcTdVAP9z7K0+1tcHnQFhQczkW3iBhSq47awLNQQA4EXzQRNvSbF+DogBT
2H62DEufNsn0Ca537PcAccRGILqJ1xS3i5h3SG0+dizx3XW1OxPXhmP+OXa/
/5BIgbJGSRen3BYEgQw1uXgIaQbmXa9gRWw8e9GS8eDYwXtkygTsSDyXATt2
VFwo8lT/XfMs2sczBMBgkqhkiG9w0BBwEwHQYJYIZIAWUDBAEqBBCOn8Yp6O
diU5v1PVARi1m6gCAqYcAytahjgq8Prbq9bwqHAvw8XyNek07WiXM3WNj8VA
==]
...@@ -18,3 +18,10 @@ ...@@ -18,3 +18,10 @@
^https?://en\.cppreference\.com/w/cpp/.* true ^https?://en\.cppreference\.com/w/cpp/.* true
^https?://en\.cppreference\.com/mwiki/index.php\?.* true ^https?://en\.cppreference\.com/mwiki/index.php\?.* true
^https?://en\.cppreference\.com/mwiki/load.php\?.* true ^https?://en\.cppreference\.com/mwiki/load.php\?.* true
// cppreference duckgogo.com search
^https?://duckduckgo\.com/\?sites=cppreference.com&q=.* true
^https?://duckduckgo\.com/.*\.woff2 true
^https?://duckduckgo\.com/.*\.css true
^https?://duckduckgo\.com/.*\.js true
^https?://duckduckgo\.com/.*\.js\?.=.* true
// Java API reference // Java API reference
^https?://docs\.oracle\.com/javase/7/docs/api/.* true ^https?://docs\.oracle\.com/javase/7/docs/api/.* true
^https?://docs\.oracle\.com/en/java/javase/11/docs/api/.* true
^https?://docs\.oracle\.com/en/dcommon/js/.*\.js true
^https?://www\.oracleimg\.com/us/assets/metrics/ora_docs\.js true
^https?://docs\.oracle\.com/favicon\.ico true
// Ahmed Java API reference // Ahmed Java API reference
^https?://www\.ida\.liu\.se/~TDDC77/extra/api-7/.* true ^https?://www\.ida\.liu\.se/~TDDC77/extra/api-7/.* true
// TDDC77 mars-2022
^https?://docs\.oracle\.com/en/java/javase/[0-9][0-9]*/docs/api/.* true
...@@ -19,3 +19,8 @@ ...@@ -19,3 +19,8 @@
^https?://code\.jquery\.com/ui/.*/jquery-ui.js$ true ^https?://code\.jquery\.com/ui/.*/jquery-ui.js$ true
^https?://code\.jquery\.com/ui/.*/jquery-ui.min.js$ true ^https?://code\.jquery\.com/ui/.*/jquery-ui.min.js$ true
^https?://d3js.org/d3-selection-multi.v1.min.js true ^https?://d3js.org/d3-selection-multi.v1.min.js true
// TDDD86
^https?://www\.ida\.liu\.se/opendsa/Books/TDDD86F21/.* true
^https?://www\.ida\.liu\.se/opendsa/.* true
^https://fs\.liu\.se/adfs/.* false
// extra for TDDE24 2020-01-17 // extra for TDDE24 2020-01-17 until 2022-02-15
^https?://docs\.python\.org/3(\.[0-9]{1,2})?/library/itertools.* false // ^https?://docs\.python\.org/3(\.[0-9]{1,2})?/library/itertools.* false
// Python library reference // Python library reference
^https?://docs\.python\.org/3(\.[0-9]{1,2})?/library/.* true ^https?://docs\.python\.org/3(\.[0-9]{1,2})?/library/.* true
...@@ -11,3 +11,17 @@ ...@@ -11,3 +11,17 @@
^https?://docs\.python\.org/3(\.[0-9]{1,2})?/.* true ^https?://docs\.python\.org/3(\.[0-9]{1,2})?/.* true
^https?://docs\.python\.org/3(\.[0-9]{1,2})?/reference/.* true ^https?://docs\.python\.org/3(\.[0-9]{1,2})?/reference/.* true
^https?://docs\.python\.org/3(\.[0-9]{1,2})?/genindex(-[A-Za-z0-9_]+)?\.html true ^https?://docs\.python\.org/3(\.[0-9]{1,2})?/genindex(-[A-Za-z0-9_]+)?\.html true
// extra for 732A80 2021-10-26
^https?://numpy\.org/doc/stable/reference/.* true
^https?://numpy\.org/doc/stable/_static/.* true
^https?://numpy\.org/doc/stable/search.* true
^https?://numpy\.org/doc/_static/.* true
^https?://fonts.gstatic.com/s/.* true
^https?://www\.tensorflow\.org/api_docs/python/.* true
^https?://www\.tensorflow\.org/images/.* true
// extra for 732A80 2022-02-16
^https?://docs\.scipy\.org/doc/scipy/reference/.* true
^https?://docs\.scipy\.org/doc/scipy/_static/.* true
^https?://img\.shields\.io/badge/release-1.8.0-980F0F?style=for-the-badge true
...@@ -6,18 +6,28 @@ ...@@ -6,18 +6,28 @@
// ^https?://cran\.rstudio\.com/src/contrib/.* true // ^https?://cran\.rstudio\.com/src/contrib/.* true
// 732G12
^https?://repo\.anaconda\.com/.* true
^https?://conda\.anaconda\.com/.* true
^https?://storage\.googleapis\.com/tensorflow/.* true
// 732A51 // 732A51
^https://bioconductor\.org/packages/.* true ^https?://bioconductor\.org/packages/.* true
^https://bioconductor\.org/biocLite\.R true ^https?://bioconductor\.org/biocLite\.R true
// 732G33 // 732G33
^https?://raw\.githubusercontent\.com/STIMALiU/KursRprgm/master/Labs/Tests/.* true ^https?://raw\.githubusercontent\.com/STIMALiU/KursRprgm/master/Labs/Tests/.* true
// 732GA98 // 732GA98
^https?://plot\.ly/r/reference.* true ^https?://plot\.ly/r/reference.* true
^https?://ggplot2\.tidyverse\.org/.* true ^https?://plotly\.com/r/reference/.* true
^https?://plotly\.com/all_static/.* true
^https?://ggplot2\.tidyverse\.org/.* true
^https?://shiny\.rstudio\.com/reference/shiny/.* true ^https?://shiny\.rstudio\.com/reference/shiny/.* true
^https?://www\.jasondavies\.com/wordtree/.* true ^https?://www\.jasondavies\.com/wordtree/.* true
^https?://www\.ida\.liu\.se/~732A98/.* true
^https?://www\.gpsvisualizer\.com/atlas\.html false
^https?://www\.gpsvisualizer\.com/.* true
// For plot.ly // For plot.ly
^https?://ajax\.googleapis\.com/ajax/libs/.*\.js true ^https?://ajax\.googleapis\.com/ajax/libs/.*\.js true
......
// google translate // google translate
^https?://translate\.google\.se/.* true ^https?://translate\.google\.se/.* true
^https?://consent\.google\.se/.* true ^https?://translate\.google\.com/.* true
^https?://ssl\.gstatic\.com/.* true ^https?://ssl\.gstatic\.com/.* true
...@@ -10,3 +10,6 @@ ...@@ -10,3 +10,6 @@
^https?://accounts\.google\.com/.* false ^https?://accounts\.google\.com/.* false
^https?://fonts\.googleapis\.com/.* true ^https?://fonts\.googleapis\.com/.* true
^https?://consent\.google\.se/.* true
^https?://consent\.youtube\.com/.* true
klaar36 ALL=(ALL) NOPASSWD: ALL klaar36 ALL=(ALL) NOPASSWD: ALL
filst04 ALL=(ALL) NOPASSWD: ALL filst04 ALL=(ALL) NOPASSWD: ALL
User_Alias EXAM_ADMINS = torjo38, klaar36, vikol94, magni54, filst04 User_Alias EXAM_ADMINS = torjo38, klaar36, vikol94, magni54, filst04, emmen85
Runas_Alias EXAM_USER = examadm, %examadm, opendsa, %opendsa Runas_Alias EXAM_USER = examadm, %examadm, opendsa, %opendsa, squid, %squid
Cmnd_Alias SERVICE_CMDS = /usr/bin/systemctl, /usr/bin/less Cmnd_Alias SERVICE_CMDS = /usr/bin/systemctl, /usr/bin/less
......
#!/usr/bin/bash
cd source
python3 -m pip install --user -r scripts/requirements.txt
sed -i 's|url = \.\./database|url = https://oauth2:glpat-WeW_ytbQ83JMs2UnQmhe@gitlab.liu.se/upp-aes/database|' .gitmodules
git submodule update --init
git checkout .gitmodules
make
cd ..
ln -s source/oracle oracle
cp source/tal tal
#!/usr/bin/bash
exec sudo -u examadm /home/examadm/tal-cli/source/scripts/tal-cli.py "$@"
#!/usr/bin/bash
exec sudo -u examadm /home/examadm/tal-cli/source/scripts/tal-export.py "$@"
class aes::aes_sw { class aes::aes_sw {
$examadm_user = examadm $examadm_user = examadm
$examadm_group = $examadm_user $examadm_group = $examadm_user
$examadm_home = "/home/${examadm_user}" $examadm_home = "/home/${examadm_user}"
...@@ -18,7 +17,7 @@ class aes::aes_sw { ...@@ -18,7 +17,7 @@ class aes::aes_sw {
managehome => false, managehome => false,
membership => inclusive, membership => inclusive,
system => true, system => true,
shell => '/sbin/nologin', shell => '/bin/bash',
} }
file { $examadm_home: file { $examadm_home:
...@@ -28,16 +27,34 @@ class aes::aes_sw { ...@@ -28,16 +27,34 @@ class aes::aes_sw {
group => $examadm_group, group => $examadm_group,
} }
file { "${examadm_home}/.ssh":
ensure => directory,
mode => '0700',
owner => $examadm_user,
group => $examadm_group,
}
file { "${examadm_home}/.ssh/authorized_keys":
ensure => file,
mode => '0600',
owner => $examadm_user,
group => $examadm_group,
content => @(SSHPUBKEY),
command="/home/examadm/tal-cli/source/scripts/tal-export.py --format ics --lookback 90 --lookahead 180",no-pty,no-user-rc,no-port-forwarding,no-agent-forwarding,no-X11-forwarding ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDJW4LP0av20r7lPXNgsftF9oaAXK41AvHyuHwybciZC/QBfTcmYif83563cTg0OzR/p+OSobiDM0odaaFYtP/8xbuVRz87X5bGYm2m8yHHqPxobHkT5g/faMkl9Fef+Al4EsT5tiaYMOhG2lj8XRYuwAb7qjoz3FFbs8TEPE7Sv+4BUCCH94taCuNYLXSxN1EXvw7VW6Ld5QXRFP53l2QUeTqE9oSii3BVrXlqqrLvNV/7nwdwyse4uhff4QrM9o4oc9FaQr8PLlPGxdlbSfIQJMVzHGpeDu0WLw+NqtLO1hsdlvQm7GrT/v8N7GJNKlsvhwnwUuMhTrB0yPMbbub1 klaar36@upp
command="/home/examadm/tal-cli/source/scripts/tal-export.py --written --format ics --lookback 90 --lookahead 180",no-pty,no-user-rc,no-port-forwarding,no-agent-forwarding,no-X11-forwarding ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILZ8aEAXw0tRcYrk1aqldepuC6tmdUYZuM270QdDF79o tal written exams to ics
| SSHPUBKEY
}
file { '/etc/systemd/system/aes_login.service': file { '/etc/systemd/system/aes_login.service':
ensure => file, ensure => file,
owner => root, owner => root,
group => root, group => root,
mode => '0644', mode => '0644',
content => @(LOGINSERVICE), content => @(LOGINSERVICE),
[Unit] [Unit]
Description=AES Login server Description=AES Login server
After=network.target After=network.target
[Service] [Service]
Type=simple Type=simple
User=examadm User=examadm
...@@ -52,6 +69,7 @@ class aes::aes_sw { ...@@ -52,6 +69,7 @@ class aes::aes_sw {
# todo: logrotate # todo: logrotate
service { 'aes_login' : service { 'aes_login' :
ensure => 'running', ensure => 'running',
enable => true,
} }
file { '/etc/systemd/system/aes_ms.service': file { '/etc/systemd/system/aes_ms.service':
...@@ -60,10 +78,10 @@ class aes::aes_sw { ...@@ -60,10 +78,10 @@ class aes::aes_sw {
group => root, group => root,
mode => '0644', mode => '0644',
content => @(MSSERVICE), content => @(MSSERVICE),
[Unit] [Unit]
Description=AES Exam server Description=AES Exam server
After=network.target After=network.target
[Service] [Service]
Type=simple Type=simple
User=examadm User=examadm
...@@ -81,14 +99,26 @@ class aes::aes_sw { ...@@ -81,14 +99,26 @@ class aes::aes_sw {
group => root, group => root,
mode => '0700', mode => '0700',
content => @(MSCRON), content => @(MSCRON),
#!/bin/sh #!/bin/sh
/usr/bin/systemctl restart aes_ms /usr/bin/systemctl restart aes_ms
| MSCRON | MSCRON
} }
file { '/etc/cron.daily/aes_login':
ensure => file,
owner => root,
group => root,
mode => '0700',
content => @(MSCRON),
#!/bin/sh
/usr/bin/systemctl restart aes_login
| MSCRON
}
# todo: logrotate # todo: logrotate
service { 'aes_ms' : service { 'aes_ms' :
ensure => 'running', ensure => 'running',
enable => true,
} }
exec { 'script-repo-updated': exec { 'script-repo-updated':
......
class aes::auth( class aes::auth (
Optional[String] $keytab_production = undef, Optional[String] $keytab_production = undef,
Optional[String] $keytab_devel = undef Optional[String] $keytab_devel = undef
) { ) {
$auth_user = auth $auth_user = auth
$auth_group = $auth_user $auth_group = $auth_user
$auth_home = "/srv/${auth_user}" $auth_home = "/srv/${auth_user}"
...@@ -47,7 +46,7 @@ class aes::auth( ...@@ -47,7 +46,7 @@ class aes::auth(
comment => 'Authentication server for AES', comment => 'Authentication server for AES',
managehome => false, managehome => false,
membership => inclusive, membership => inclusive,
groups => [ 'aes_local_auth' ], groups => ['aes_local_auth'],
system => true, system => true,
shell => '/sbin/nologin', shell => '/sbin/nologin',
} }
...@@ -110,7 +109,7 @@ class aes::auth( ...@@ -110,7 +109,7 @@ class aes::auth(
exec { 'update-auth-repo' : exec { 'update-auth-repo' :
command => "/opt/utils/update_repo.sh ${auth_home}/src https://oauth2:F-agHaRXCdyFy38q4c-N@gitlab.liu.se/upp-aes/communication.git ${server_type}", command => "/opt/utils/update_repo.sh ${auth_home}/src https://oauth2:F-agHaRXCdyFy38q4c-N@gitlab.liu.se/upp-aes/communication.git ${server_type}",
environment => [ "REPO_USER=${auth_user}", "REPO_GROUP=${auth_group}", "REPO_ON_UPDATE=${auth_home}/on_update.sh" ], environment => ["REPO_USER=${auth_user}", "REPO_GROUP=${auth_group}", "REPO_ON_UPDATE=${auth_home}/on_update.sh"],
# This command will need to run "on_update" as root in order to restart the service. # This command will need to run "on_update" as root in order to restart the service.
user => root, user => root,
group => root, group => root,
...@@ -120,5 +119,6 @@ class aes::auth( ...@@ -120,5 +119,6 @@ class aes::auth(
service { $auth_service : service { $auth_service :
ensure => 'running', ensure => 'running',
enable => true,
} }
} }
class aes::auth_keydb { class aes::auth_keydb {
$keydb_user = auth_keydb $keydb_user = auth_keydb
$keydb_group = $keydb_user $keydb_group = $keydb_user
$keydb_home = "/srv/${keydb_user}" $keydb_home = "/srv/${keydb_user}"
...@@ -20,7 +19,7 @@ class aes::auth_keydb { ...@@ -20,7 +19,7 @@ class aes::auth_keydb {
comment => 'Authentication server for AES', comment => 'Authentication server for AES',
managehome => false, managehome => false,
membership => inclusive, membership => inclusive,
groups => [ 'aes_local_auth' ], groups => ['aes_local_auth'],
system => true, system => true,
shell => '/sbin/nologin', shell => '/sbin/nologin',
} }
...@@ -50,7 +49,7 @@ class aes::auth_keydb { ...@@ -50,7 +49,7 @@ class aes::auth_keydb {
exec { 'update-keydb-repo' : exec { 'update-keydb-repo' :
command => "/opt/utils/update_repo.sh ${keydb_home}/src https://oauth2:F-agHaRXCdyFy38q4c-N@gitlab.liu.se/upp-aes/communication.git ${server_type}", command => "/opt/utils/update_repo.sh ${keydb_home}/src https://oauth2:F-agHaRXCdyFy38q4c-N@gitlab.liu.se/upp-aes/communication.git ${server_type}",
environment => [ "REPO_USER=${keydb_user}", "REPO_GROUP=${keydb_group}", "REPO_ON_UPDATE=${keydb_home}/on_update.sh" ], environment => ["REPO_USER=${keydb_user}", "REPO_GROUP=${keydb_group}", "REPO_ON_UPDATE=${keydb_home}/on_update.sh"],
# This command will need to run "on_update" as root in order to restart the service. # This command will need to run "on_update" as root in order to restart the service.
user => root, user => root,
group => root, group => root,
...@@ -60,6 +59,7 @@ class aes::auth_keydb { ...@@ -60,6 +59,7 @@ class aes::auth_keydb {
service { $keydb_service : service { $keydb_service :
ensure => 'running', ensure => 'running',
enable => true,
} }
# These are temporary until the AdmC database is up and running. # These are temporary until the AdmC database is up and running.
...@@ -74,4 +74,5 @@ class aes::auth_keydb { ...@@ -74,4 +74,5 @@ class aes::auth_keydb {
service { 'aes_temp_userdb' : service { 'aes_temp_userdb' :
ensure => 'running', ensure => 'running',
}} }
\ No newline at end of file }
class aes::broker { class aes::broker {
$broker_user = broker $broker_user = broker
$broker_group = $broker_user $broker_group = $broker_user
$broker_home = "/srv/${broker_user}" $broker_home = "/srv/${broker_user}"
...@@ -90,7 +89,7 @@ class aes::broker { ...@@ -90,7 +89,7 @@ class aes::broker {
exec { 'update-broker-repo' : exec { 'update-broker-repo' :
command => "/opt/utils/update_repo.sh ${broker_home}/src https://oauth2:F-agHaRXCdyFy38q4c-N@gitlab.liu.se/upp-aes/communication.git ${server_type}", command => "/opt/utils/update_repo.sh ${broker_home}/src https://oauth2:F-agHaRXCdyFy38q4c-N@gitlab.liu.se/upp-aes/communication.git ${server_type}",
environment => [ "REPO_USER=${broker_user}", "REPO_GROUP=${broker_group}", "REPO_ON_UPDATE=${broker_home}/on_update.sh" ], environment => ["REPO_USER=${broker_user}", "REPO_GROUP=${broker_group}", "REPO_ON_UPDATE=${broker_home}/on_update.sh"],
# This command will need to run "on_update" as root in order to restart the service. # This command will need to run "on_update" as root in order to restart the service.
user => root, user => root,
group => root, group => root,
...@@ -100,5 +99,6 @@ class aes::broker { ...@@ -100,5 +99,6 @@ class aes::broker {
service { $broker_service : service { $broker_service :
ensure => 'running', ensure => 'running',
enable => true,
} }
} }
class aes::examfiles { class aes::examfiles {
include users::micis03 include users::micis03
include users::jondy94 include users::jondy94
include users::andma54
include users::tomre48
group { 'liuitdrs' : group { 'liuitdrs' :
ensure => present, ensure => present,
...@@ -16,11 +17,18 @@ class aes::examfiles { ...@@ -16,11 +17,18 @@ class aes::examfiles {
groups +> liuitdrs, groups +> liuitdrs,
} }
User <| title == andma54 |> {
groups +> liuitdrs,
}
User <| title == tomre48 |> {
groups +> liuitdrs,
}
file { '/examfiles' : file { '/examfiles' :
ensure => directory, ensure => directory,
mode => '0775', mode => '0775',
owner => root, owner => root,
group => liuitdrs, group => liuitdrs,
} }
} }
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