summaryrefslogtreecommitdiff
path: root/profiles/wheezy/classes/Admin/etc/functions.yml
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/wheezy/classes/Admin/etc/functions.yml')
-rw-r--r--profiles/wheezy/classes/Admin/etc/functions.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/profiles/wheezy/classes/Admin/etc/functions.yml b/profiles/wheezy/classes/Admin/etc/functions.yml
new file mode 100644
index 0000000..5d86952
--- /dev/null
+++ b/profiles/wheezy/classes/Admin/etc/functions.yml
@@ -0,0 +1,26 @@
+classes:
+ - Admin
+parameters:
+ doc:
+ admin:
+ tweak:
+ - define routines to make backup of and help edit config files
+ tweak:
+ - >
+ _backup(){ set -e;\
+ if [ -e "$1.orig" ]; then \
+ :;\
+ elif [ -e "$1" ]; then \
+ cp -a "$1" "$1.orig";\
+ else \
+ touch "$1.orig";\
+ fi; }
+ - >
+ _clone(){ set -e;\
+ _backup "$2";\
+ cp -a "$1" "$2"; }
+ - >
+ _setvar(){ set -e;\
+ _backup "$1";\
+ sed -i -r \
+ -e "s,^#?($2)=.*,\\1=$3," "$1"; }