diff options
author | Christopher Harvey <chris@basementcode.com> | 2010-06-01 06:21:40 -0400 |
---|---|---|
committer | Christopher Harvey <chris@basementcode.com> | 2010-06-01 06:21:40 -0400 |
commit | a6686583ce7c72700acdf225a0b743fc4b2c42e0 (patch) | |
tree | 55b061db1b38b3e26e6dff0567b99a6049cd0b52 /modules | |
parent | Added .gitignore (diff) | |
download | ventoo-a6686583ce7c72700acdf225a0b743fc4b2c42e0.tar.gz ventoo-a6686583ce7c72700acdf225a0b743fc4b2c42e0.tar.bz2 ventoo-a6686583ce7c72700acdf225a0b743fc4b2c42e0.zip |
Moved project into official GSoC hosting from github.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/fstab/main.xml | 10 | ||||
-rw-r--r-- | modules/group/main.xml | 9 | ||||
-rw-r--r-- | modules/hosts/main.xml | 7 | ||||
-rw-r--r-- | modules/pam/main.xml | 8 |
4 files changed, 34 insertions, 0 deletions
diff --git a/modules/fstab/main.xml b/modules/fstab/main.xml new file mode 100644 index 0000000..f8157ad --- /dev/null +++ b/modules/fstab/main.xml @@ -0,0 +1,10 @@ +<VentooModule> + <root mult="*"> + <spec mult="1"/> + <file mult="1"/> + <vfstype mult="1"/> + <opt mult="*"/> + <dump mult="1"/> + <passno mult="1"/> + </root> +</VentooModule>
\ No newline at end of file diff --git a/modules/group/main.xml b/modules/group/main.xml new file mode 100644 index 0000000..f35803b --- /dev/null +++ b/modules/group/main.xml @@ -0,0 +1,9 @@ +<VentooModule> + <root mult="1"> + <ventoo_dynamic mult="*"> + <password mult="1"/> + <gid mult="1"/> + <user mult="*"/> + </ventoo_dynamic> + </root> +</VentooModule>
\ No newline at end of file diff --git a/modules/hosts/main.xml b/modules/hosts/main.xml new file mode 100644 index 0000000..863d3f8 --- /dev/null +++ b/modules/hosts/main.xml @@ -0,0 +1,7 @@ +<VentooModule> + <root mult="*"> + <ipaddr mult="1"/> + <canonical mult="1"/> + <alias mult="*"/> + </root> +</VentooModule>
\ No newline at end of file diff --git a/modules/pam/main.xml b/modules/pam/main.xml new file mode 100644 index 0000000..4427771 --- /dev/null +++ b/modules/pam/main.xml @@ -0,0 +1,8 @@ +<VentooModule> + <root mult="*"> + <type mult="1"/> + <control mult="1"/> + <module mult="1"/> + <argument mult="*"/> + </root> +</VentooModule>
\ No newline at end of file |