summaryrefslogtreecommitdiffstats
path: root/modules/partofme/manifests/operatingsystem.pp
blob: 7f25635014ea4652863b25c6fa05b9746c992844 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class partofme::operatingsystem {
  include reflector
  include tailscale
  
  file {
    '/etc/mkinitcpio.conf':
      source => 'puppet:///modules/partofme/mkinitcpio.conf',
      notify => Exec['/usr/bin/mkinitcpio -p linux'];
  }

  exec { '/usr/bin/mkinitcpio -p linux':
    refreshonly => true;
  }
}