Navigation Menu

Skip to content

Commit

Permalink
Fix #79. Don't require a privileged account to install the package.
Browse files Browse the repository at this point in the history
  • Loading branch information
s0undt3ch committed May 23, 2011
1 parent 0cf14b4 commit 5527b5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -5,14 +5,14 @@
import os
from distutils.core import setup
from distutils.extension import Extension
from distutils.sysconfig import get_python_lib
from distutils.sysconfig import get_python_lib, PREFIX

NAME = 'salt'
VER = '0.8.7'
DESC = 'Portable, distrubuted, remote execution system'

mod_path = os.path.join(get_python_lib(), 'salt/modules/')
doc_path = os.path.join('/usr/share/doc/', NAME + '-' + VER)
doc_path = os.path.join(PREFIX, 'share/doc/', NAME + '-' + VER)
example_path = os.path.join(doc_path, 'examples')
template_path = os.path.join(example_path, 'templates')

Expand Down Expand Up @@ -51,7 +51,7 @@
'scripts/salt-cp',
'scripts/salt-call',
'scripts/salt'],
data_files=[('/etc/salt',
data_files=[('etc/salt',
['conf/master',
'conf/minion',
]),
Expand Down

0 comments on commit 5527b5f

Please sign in to comment.