From fa4ecd7fb7d1a5112f871fbdf6adab524c59aa81 Mon Sep 17 00:00:00 2001 From: Szymon Kolano Date: Fri, 8 Nov 2024 18:59:24 +0100 Subject: [PATCH] init --- git_helper.sh | 7 +++++++ pntdc.yml | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100755 git_helper.sh create mode 100644 pntdc.yml diff --git a/git_helper.sh b/git_helper.sh new file mode 100755 index 0000000..67e33ce --- /dev/null +++ b/git_helper.sh @@ -0,0 +1,7 @@ +#!/bin/bash +BRANCH=`git branch --show current` +git add . +printf "commit message: " +read msg +git commit -m "$msg" +git push origin $BRANCH diff --git a/pntdc.yml b/pntdc.yml new file mode 100644 index 0000000..c3b9e5a --- /dev/null +++ b/pntdc.yml @@ -0,0 +1,10 @@ +--- +- name: Install & Configure Desktop + hosts: archlinux + become: true + vars_files: + - vars/main.yml + roles: + - install + +