blob: 57ebcb67efdedf4347dace7ef1591ef52937f5e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
#
# Make sure that old puppet cruft is removed
# This also allows us to downgrade puppet as
# it's more likely that installing old versions
# over new will cause issues.
#
# ${3} is the destination volume so that this works correctly
# when being installed to volumes other than the current OS.
rm -Rf "${3}{SITELIBDIR}/puppet*"
|