summaryrefslogtreecommitdiff
path: root/manifests/workstation/family/debian.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-23 14:17:03 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-02-09 18:05:08 +0100
commit570cd38cc5265df93f0afbe334ccab396424668c (patch)
treef16120fa2af477e1a6f840ce9f2f3cfe9be5d446 /manifests/workstation/family/debian.pp
parentSplit workstation os specific into family and name. (diff)
downloadprofiles-570cd38cc5265df93f0afbe334ccab396424668c.tar.gz
profiles-570cd38cc5265df93f0afbe334ccab396424668c.tar.xz
Add profiles::workstation::family::debian.
Diffstat (limited to 'manifests/workstation/family/debian.pp')
-rw-r--r--manifests/workstation/family/debian.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/workstation/family/debian.pp b/manifests/workstation/family/debian.pp
new file mode 100644
index 0000000..2670c22
--- /dev/null
+++ b/manifests/workstation/family/debian.pp
@@ -0,0 +1,10 @@
+class profiles::workstation::family::debian {
+ file { '/root/.selected-editor':
+ ensure => file,
+ replace => true, # basically force
+ content => @(EOF)
+ # Generated by puppet
+ SELECTED_EDITOR="/usr/bin/vim.tiny"
+ | EOF
+ }
+}