10 lines
205 B
Python
10 lines
205 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""Contient les valeurs par défaut du plugin python
|
|
de Bcfg2"""
|
|
|
|
DEFAULT_USER = 'root'
|
|
DEFAULT_GROUP = 'root'
|
|
DEFAULT_ACLS = 0644
|
|
|
|
INCLUDES = "../etc/python"
|