From 63dc6b86e3d704b265471c9fde13292ced87ff10 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sun, 29 Aug 2021 08:11:32 +0000 Subject: [PATCH] added some comments --- vagrant/Jenkinsfile | 5 ++++- vagrant/ansible-initial.yml | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/vagrant/Jenkinsfile b/vagrant/Jenkinsfile index b9847c7..3eca4d5 100644 --- a/vagrant/Jenkinsfile +++ b/vagrant/Jenkinsfile @@ -35,7 +35,10 @@ pipeline { } steps { echo "Publishing the virtual machine built" - // TODO clean up before packaging + // TODO clean up before packaging + // remove stale log files, temporary files + // remove unneeded packages + // remove the default vagrant user and sshkey? sh "make package" // TODO copy the final artifacts to an artifact repository // sh "make clean" diff --git a/vagrant/ansible-initial.yml b/vagrant/ansible-initial.yml index 8a7485f..bef854e 100644 --- a/vagrant/ansible-initial.yml +++ b/vagrant/ansible-initial.yml @@ -2,6 +2,11 @@ become: true become_method: sudo tasks: + ## TODO: add the default login users + ## TODO: setup sudoers configurations + ## TODO: setup ssh security policies + ## TODO: setup login policies + ## TODO: whatever is needed... - name: intall gcc yum: name: gcc