tags

Thu, 15 Jun 2017 03:02:26 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 15 Jun 2017 03:02:26 -0400
changeset 63
f49b84e25dcc
parent 62
a86cf22abcd6
child 64
48887c0dc48d

tags

roles/devbox/tasks/dist-debian.yml file | annotate | diff | comparison | revisions
roles/user/tasks/main.yml file | annotate | diff | comparison | revisions
--- a/roles/devbox/tasks/dist-debian.yml
+++ b/roles/devbox/tasks/dist-debian.yml
@@ -33,6 +33,7 @@
   apt: name={{item}} state=installed
   with_items:
     - vim-nox
+  tags: packages, install
 
 - name: Set default X session in lightdm
   when: gui_enabled and gui_session
--- a/roles/user/tasks/main.yml
+++ b/roles/user/tasks/main.yml
@@ -29,6 +29,7 @@
   args:
     chdir: "~"
     creates: "~/.hg"
+  tags: user, dotfiles
 
 - name: Assert hg sources
   become: "{{user_name}}"
@@ -42,6 +43,7 @@
   with_items:
     - {name: 'default',      url: "{{dotfiles_default}}"}
     - {name: 'default-push', url: "{{dotfiles_default_push}}"}
+  tags: user, dotfiles
 
 - name: Update dotfiles
   become: "{{user_name}}"
@@ -51,6 +53,7 @@
   register: update_dotfiles
   changed_when: update_dotfiles.stdout | match("added|updated")
   failed_when: update_dotfiles.rc > 1
+  tags: user, dotfiles
 
 - name: Run bin/homedir-setup
   become: "{{user_name}}"
@@ -60,3 +63,4 @@
   register: homedir_setup
   changed_when: homedir_setup.stdout | match("Updating|Cloning")
   failed_when: homedir_setup.rc != 0
+  tags: user, dotfiles

mercurial