add prometheus and friends
[distro-setup] / brc
diff --git a/brc b/brc
index ed1f51d7e59f55d34d48f1d8a3218e2b4ea190bd..5ecfd817aa6d0a8072562a5e4b31f191d26a8e57 100644 (file)
--- a/brc
+++ b/brc
@@ -331,14 +331,19 @@ anki() {
 
 ap() {
   # pushd in case current directory has an ansible.cfg file
-  pushd /a/xans
+  pushd /a/xans >/dev/null
   ansible-playbook -v -l ${1:- $(hostname -f)} site.yml
-  popd
+  popd >/dev/null
 }
 aw() {
-  pushd /a/work/ansible-configs
+  pushd /a/work/ansible-configs >/dev/null
   time ansible-playbook -v -i inventory adhoc.yml "$@"
-  popd
+  popd >/dev/null
+}
+ad() {
+  pushd /a/bin/distro-setup/a >/dev/null
+  ansible-playbook site.yml
+  popd >/dev/null
 }
 
 astudio() {