Delete vro_provisioned.pp

This commit is contained in:
Abir Majumdar 2019-03-01 10:47:37 -05:00 committed by GitHub
parent d359979b82
commit a58d33e60b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,30 +0,0 @@
# @summary This profile does some post agent install cleanup.
class profile::vro_provisioned {
# any operating system-specific state for vro-provisioned machines.
# it's common to change the Administrator user name on Windows, for example.
case $::kernel {
'Linux': {
$agent_confdir = '/etc/puppetlabs/puppet'
}
'windows': {
$agent_confdir = 'C:/ProgramData/PuppetLabs/puppet/etc'
#exec { 'rename-Administrator':
# command => '$(Get-WMIObject Win32_UserAccount -Filter "Name=\'Administrator\'").Rename("puppet#adm1n")',
# unless => 'if (Get-WmiObject Win32_UserAccount -Filter "Name=\'Administrator\'") { exit 1 }',
# provider => powershell,
#}
}
default: {}
}
# ensure that the csr_attributes.yaml file containing the shared
# autosign secret is removed on the first puppet agent run.
file { "${agent_confdir}/csr_attributes.yaml":
ensure => absent,
backup => false,
}
}