summaryrefslogtreecommitdiffstats
path: root/cookbooks/user/recipes/default.rb
diff options
context:
space:
mode:
authorVenkata Harish K Kajur <vk250x@att.com>2017-05-19 12:29:43 -0400
committerVenkata Harish K Kajur <vk250x@att.com>2017-05-19 12:40:51 -0400
commit0cd55fc1d50f066720bbe0ce591d9cbc59ecddf4 (patch)
treec01e51a84caa6baac7511352451281c3759097e0 /cookbooks/user/recipes/default.rb
parentb160c3cc1e58e85502ccaa7358cd38ff210ed34a (diff)
Add the chef config changes for the new repos
Change-Id: If1fc90402ca70449cd181fab9f469eded4831638 Signed-off-by: Venkata Harish K Kajur <vk250x@att.com>
Diffstat (limited to 'cookbooks/user/recipes/default.rb')
-rw-r--r--cookbooks/user/recipes/default.rb33
1 files changed, 0 insertions, 33 deletions
diff --git a/cookbooks/user/recipes/default.rb b/cookbooks/user/recipes/default.rb
deleted file mode 100644
index 20c5ac3..0000000
--- a/cookbooks/user/recipes/default.rb
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# Cookbook Name:: user
-# Recipe:: default
-#
-# Copyright 2015, AT&T
-#
-# All rights reserved - Do Not Redistribute
-#
-group 'aaiadmin' do
- append true
-#gid 492381
- members members ['aaiadmin']
- action :create
-end
-
-user 'aaiadmin' do
- comment "A&AI Application User"
- gid "aaiadmin"
- home "/opt/aaihome/aaiadmin"
- manage_home true
- non_unique false
- shell "/bin/ksh"
-#uid 341790
- username "aaiadmin"
- ignore_failure true
- action :create
-end
-directory "/opt/aaihome/aaiadmin" do
- owner 'aaiadmin'
- group 'aaiadmin'
- mode "0755"
- ignore_failure true
-end