Merge pull request 'Added enc_update script' (#3) from feature/enc_updater into master

Reviewed-on: #3
This commit is contained in:
Ben Vincent 2023-06-18 14:50:51 +09:30
commit 58cd2d8601

9
enc_update Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/bash
# open a subshell and pull enc data
(
cd /opt/puppetlabs/enc/
git reset --hard master
git clean -fd
git pull
)