summaryrefslogtreecommitdiff
path: root/modules/profiles/manifests/workstation/archlinux.pp
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
commitdd28dcf3d620a4ac7d0a1532b812213cf094cd3c (patch)
treea3fa8c8ef446de2bcc2f317bceb4bca868f7e0f0 /modules/profiles/manifests/workstation/archlinux.pp
parentMove webdav into profiles. (diff)
downloadwebdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.gz
webdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.xz
Revert "Move webdav into profiles."
It actually reverts the non-need for the nginx module webdav_ext. Since Omnifocus requires PROPFIND. This reverts commit edf6ffe8b399679ba28cc5e558a6838919dd1ee8.
Diffstat (limited to '')
-rw-r--r--modules/profiles/manifests/workstation/archlinux.pp51
1 files changed, 0 insertions, 51 deletions
diff --git a/modules/profiles/manifests/workstation/archlinux.pp b/modules/profiles/manifests/workstation/archlinux.pp
deleted file mode 100644
index 0919efd..0000000
--- a/modules/profiles/manifests/workstation/archlinux.pp
+++ /dev/null
@@ -1,51 +0,0 @@
-class profiles::workstation::archlinux {
-
- pacman::hook { 'systemd daemon-reload':
- description => 'Reload systemd user daemon',
- exec => '/bin/sudo systemctl --machine=hugo@.host --user daemon-reload',
- when => 'PostTransaction',
- trigger => {
- operation => 'Upgrade',
- type => 'Path',
- target => 'usr/lib/systemd/user/*',
- },
- }
-
- package { 'kernel-modules-hook':
- ensure => installed,
- } -> service { 'linux-modules-cleanup':
- enable => true,
- }
-
- $cpus = $facts['processors']['count'] - 1
- file_line { 'Makepkg paralell':
- path => '/etc/makepkg.conf',
- after => '^#-- Make flags',
- line => "MAKEFLAGS='-j${cpus}'"
- }
-
- pacman::repo { 'adrift-space':
- ensure => present,
- server => 'http://repo.gandalf.adrift.space/arch',
- sig_level => 'Optional',
- }
-
- # remove
- # - netctl
-
- # aur-packages
-# - pacaur
-# - ansible-aur-git
-# - cyrus-sasl-xoauth2-git
-# - todotxt
-# - effitask
-# - getmail
-# - mu
-# # - pacaur
-# - pandoc-bin
-# - tlclient
-# # backups old modules on kernel update
-# - kernel-modules-hook
-
-
-}