summaryrefslogtreecommitdiff
path: root/manifests/environment.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-10-02 19:41:49 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-10-02 19:43:01 +0200
commit3fb803257d5a3d10a761b6b28b36dd7e81e85105 (patch)
treeae0083646c94cccfdc00cb1706f93c7bcae411d1 /manifests/environment.pp
parentInclude imagemagick profile from workstation. (diff)
downloadprofiles-3fb803257d5a3d10a761b6b28b36dd7e81e85105.tar.gz
profiles-3fb803257d5a3d10a761b6b28b36dd7e81e85105.tar.xz
Start using envvar module.
Diffstat (limited to '')
-rw-r--r--manifests/environment.pp15
1 files changed, 0 insertions, 15 deletions
diff --git a/manifests/environment.pp b/manifests/environment.pp
deleted file mode 100644
index 6759127..0000000
--- a/manifests/environment.pp
+++ /dev/null
@@ -1,15 +0,0 @@
-# Manage global environment variables.
-# TODO this should be moved to its own module, and provide propper
-# resource types.
-class profiles::environment {
- concat { '/etc/environment':
- ensure => 'present',
- }
-
- $user_environment = lookup('environment', undef, 'hash', {})
- concat::fragment { 'User environment':
- target => '/etc/environment',
- content => epp('profiles/keyvalue.epp', { values => $user_environment }),
- }
-
-}