Removed test code from master branch
This commit is contained in:
parent
7e4f205a90
commit
68db61e876
17
tests/Vagrantfile
vendored
17
tests/Vagrantfile
vendored
@ -1,17 +0,0 @@
|
|||||||
# vi: set ft=ruby
|
|
||||||
|
|
||||||
require 'rbconfig'
|
|
||||||
|
|
||||||
ROLE_NAME = 'samba'
|
|
||||||
HOST_NAME = 'test' + ROLE_NAME
|
|
||||||
VAGRANTFILE_API_VERSION = '2'
|
|
||||||
|
|
||||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
||||||
config.vm.box = 'bertvv/centos71'
|
|
||||||
config.vm.define HOST_NAME do |node|
|
|
||||||
node.vm.provision 'ansible' do |ansible|
|
|
||||||
ansible.playbook = 'test-full.yml'
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
localhost ansible_connection=local
|
|
@ -1 +0,0 @@
|
|||||||
../..
|
|
@ -1,46 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: all
|
|
||||||
become: true
|
|
||||||
pre_tasks:
|
|
||||||
- name: Ensure /var/www/html exists
|
|
||||||
file:
|
|
||||||
name: /var/www/html
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
vars:
|
|
||||||
#samba_netbios_name: SAMBA_TEST
|
|
||||||
samba_server_string: 'Welcome to the test file server'
|
|
||||||
samba_workgroup: TESTGROUP
|
|
||||||
|
|
||||||
samba_load_homes: true
|
|
||||||
samba_load_printers: false
|
|
||||||
samba_create_varwww_symlinks: true
|
|
||||||
|
|
||||||
samba_log: /var/log/samba.log
|
|
||||||
samba_log_size: 60000
|
|
||||||
|
|
||||||
samba_map_to_guest: Never
|
|
||||||
samba_users:
|
|
||||||
- name: vagrant
|
|
||||||
password: vagrant
|
|
||||||
|
|
||||||
samba_shares_root: /srv/samba
|
|
||||||
samba_shares:
|
|
||||||
- name: restrictedshare
|
|
||||||
- name: privateshare
|
|
||||||
comment: 'Only readable/writeable by vagrant'
|
|
||||||
write_list: vagrant
|
|
||||||
group: vagrant
|
|
||||||
- name: protectedshare
|
|
||||||
public: yes
|
|
||||||
comment: 'Public, but only writeable by vagrant'
|
|
||||||
write_list: vagrant
|
|
||||||
group: vagrant
|
|
||||||
- name: publicshare
|
|
||||||
comment: 'Public share, writeable by all members of group ‘users’'
|
|
||||||
public: yes
|
|
||||||
write_list: +users
|
|
||||||
group: users
|
|
||||||
setype: public_content_t
|
|
||||||
roles:
|
|
||||||
- samba
|
|
@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: all
|
|
||||||
become: true
|
|
||||||
vars:
|
|
||||||
samba_netbios_name: SAMBA_TEST
|
|
||||||
roles:
|
|
||||||
- samba
|
|
Loading…
Reference in New Issue
Block a user