From: Tom Hughes Date: Tue, 3 Dec 2024 20:11:54 +0000 (+0000) Subject: Drop kessie role X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/5791723b9ed5804a6062bd979e88e634e5f8864d Drop kessie role --- diff --git a/roles/exonetric.rb b/roles/exonetric.rb deleted file mode 100644 index 93068a76c..000000000 --- a/roles/exonetric.rb +++ /dev/null @@ -1,30 +0,0 @@ -name "exonetric" -description "Role applied to all servers at Exonetric" - -default_attributes( - :accounts => { - :users => { - :hatter => { :status => :administrator } - } - }, - :hosted_by => "Exonetric", - :location => "London, England", - :networking => { - :roles => { - :external => { - :inet => { - :prefix => "28", - :gateway => "178.250.74.33" - }, - :inet6 => { - :prefix => "64", - :gateway => "2a02:1658:4:0::1" - } - } - } - } -) - -run_list( - "role[gb]" -) diff --git a/roles/hp-dl180-g6.rb b/roles/hp-dl180-g6.rb deleted file mode 100644 index f7aa64a3a..000000000 --- a/roles/hp-dl180-g6.rb +++ /dev/null @@ -1,8 +0,0 @@ -name "hp-dl180-g6" -description "Role applied to all HP DL180 G6 machines" - -default_attributes( - :hardware => { - :blacklisted_modules => %w[acpi_power_meter] - } -) diff --git a/roles/kessie.rb b/roles/kessie.rb deleted file mode 100644 index 6e47d5dbb..000000000 --- a/roles/kessie.rb +++ /dev/null @@ -1,32 +0,0 @@ -name "kessie" -description "Master role applied to kessie" - -default_attributes( - :sysctl => { - :swappiness => { - :comment => "Only swap in an emergency", - :parameters => { - "vm.swappiness" => "1" - } - } - }, - :networking => { - :interfaces => { - :external => { - :interface => "enp2s0f0", - :role => :external, - :inet => { - :address => "178.250.74.36" - }, - :inet6 => { - :address => "2a02:1658:4:0:dad3:85ff:fe5d:875e" - } - } - } - } -) - -run_list( - "role[exonetric]", - "role[hp-dl180-g6]" -)