summaryrefslogtreecommitdiffstats
path: root/modules/partofme/manifests/operatingsystem.pp
blob: a98e9505fb4d428dbc0222e6b8dc2a23c45253b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class partofme::operatingsystem {
  include reflector
  include wireguard
  
  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;
  }
}