10 lines
132 B
Bash
Executable File
10 lines
132 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
# open a subshell and pull enc data
|
|
(
|
|
cd /opt/puppetlabs/enc/
|
|
git reset --hard master
|
|
git clean -fd
|
|
git pull
|
|
)
|