bastelfreak
11/19/2022, 6:08 PMbastelfreak
11/19/2022, 6:19 PMbastelfreak
11/19/2022, 8:11 PMSlackbot
11/20/2022, 5:28 AMerik
11/20/2022, 5:28 AMerik
11/20/2022, 5:28 AMSlackbot
11/21/2022, 8:39 AMbastelfreak
11/21/2022, 9:07 AMsameer
11/21/2022, 9:16 AMsameer
11/21/2022, 1:32 PMsameer
11/21/2022, 1:33 PMSlackbot
11/21/2022, 3:38 PMDr Bunsen Honeydew
11/21/2022, 3:38 PMAdrian Galbincea
11/21/2022, 3:40 PM/Stage[main]/Provisioning::Packages/Package[Notepad++ (64-bit x64) - 8.4.7]/ensure created (corrective) after first run/install
below is my class:
class provisioning::packages() {
case downcase($::osfamily) {
'windows': {
if $::architecture == 'x86'{
package { 'Notepad++ (32-bit x86) - 8.4.7':
ensure => installed,
source => 'https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4.7/npp.8.4.7.Installer.exe',
install_options => ['/S'],
}
}
else {
package { 'Notepad++ (64-bit x64) - 8.4.7':
ensure => installed,
source => 'https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4.7/npp.8.4.7.Installer.x64.exe',
install_options => ['/S'],
}
}
}
}
}Adrian Galbincea
11/21/2022, 3:40 PM/Stage[main]/Provisioning::Packages/Package[Notepad++ (64-bit x64) - 8.4.7]/ensure created (corrective) after first run/install
below is my class:
class provisioning::packages() {
case downcase($::osfamily) {
'windows': {
if $::architecture == 'x86'{
package { 'Notepad++ (32-bit x86) - 8.4.7':
ensure => installed,
source => 'https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4.7/npp.8.4.7.Installer.exe',
install_options => ['/S'],
}
}
else {
package { 'Notepad++ (64-bit x64) - 8.4.7':
ensure => installed,
source => 'https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4.7/npp.8.4.7.Installer.x64.exe',
install_options => ['/S'],
}
}
}
}
}Adrian Galbincea
11/21/2022, 3:42 PM/Stage[main]/Provisioning::Packages/Package[Notepad++ (64-bit x64) - 8.4.7]/ensure created (corrective) after first run/install
below is my class:
class provisioning::packages() {
case downcase($::osfamily) {
'windows': {
if $::architecture == 'x86'{
package { 'Notepad++ (32-bit x86) - 8.4.7':
ensure => installed,
source => '<https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4.7/npp.8.4.7.Installer.exe>',
install_options => ['/S'],
}
}
else {
package { 'Notepad++ (64-bit x64) - 8.4.7':
ensure => installed,
source => '<https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.4.7/npp.8.4.7.Installer.x64.exe>',
install_options => ['/S'],
}
}
}
}
}
I use choco for other packages but I want to be able to deploy my custom packages too without always to reinstall themCas Donoghue
11/21/2022, 8:16 PMDr Bunsen Honeydew
11/22/2022, 5:45 PMjballiet
11/22/2022, 8:05 PMjballiet
11/22/2022, 8:05 PMDr Bunsen Honeydew
11/22/2022, 10:45 PMSlackbot
11/23/2022, 7:46 AMSlackbot
11/23/2022, 7:57 AMtuxmea
11/23/2022, 7:59 AMGeorge NICA
11/23/2022, 7:59 AMPuppet Illegal attempt to assign via [index/key]. Not an assignable reference. (Will continue in thread).tuxmea
11/23/2022, 8:00 AM/etc/apache2/CERTSTORE/<%= $facts…. %>/<%= $facts…. %>.crtGeorge NICA
11/23/2022, 8:08 AMGeorge NICA
11/23/2022, 8:09 AMtuxmea
11/23/2022, 8:14 AMsameer
11/23/2022, 8:30 AM