aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/modules/steam/manifests/init.pp
blob: ee164a27dbf0c27b302a93e19297baf2f1e6e995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class steam {
  file {'/var/lib/dpkg/arch':
    content => @(EOT)
    amd64
    i386
    | EOT
    ,
  }
  ~>
  Exec['/usr/bin/apt update']
  ->
  package {'steam-installer':}
}