-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsamba4.src.pb
77 lines (77 loc) · 1.5 KB
/
samba4.src.pb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
- hosts: all
gather_facts: False
vars:
TYPE: samba
INSTANCE: main
REPO: git://git.samba.org/samba.git
APT_INSTALL: installed
PKGS:
- build-essential
- libacl1-dev
- libattr1-dev
- libblkid-dev
- libgnutls-dev
- libreadline-dev
- python-dev
- python-dnspython
- gdb
- pkg-config
- libpopt-dev
- libldap2-dev
- dnsutils
- libbsd-dev
- attr
- krb5-user
- docbook-xsl
- libcups2-dev
- acl
- libpam0g-dev
- xsltproc
- libkrb5-dev
- libtalloc-dev
- libtevent-dev
- libcephfs-dev
- libavahi-client-dev
- libctdb-dev
- xfslibs-dev
- libaio-dev
- libfam-dev
- libdm0-dev
- yapps2
- libnss3-dev
- libbind-dev
# conflicts with libkrb5-dev which is needed for libcups2-dev
#- heimdal-dev
ENABLE:
- cups
- iprint
- avahi
- fhs
WITH:
- winbind
- ads
- ldap
- pam
- pam_smbpass
- quotas
- sendfile-support
- utmp
- acl-support
- dnsupdate
- syslog
- automount
- aio-support
- dmapi
- fam
- cluster-support
- regedit
# FreeIPA, but won't get a DC?
#- with-system-mitkrb5
#PREFIX_DIR: "{{OPT}}"
PREFIX_DIR: /usr
tasks:
- include: tasks/compfuzor.includes type=src
- shell: chdir={{DIR}} ./configure --with-{{ WITH|join(' --with-') }} --enable-{{ ENABLE|join(' --enable-') }} --prefix="{{PREFIX_DIR}}"
- shell: chdir={{DIR}} make
- shell: chdir={{DIR}} make install