Changeset 149
- Timestamp:
- 08/10/07 16:23:23 (4 years ago)
- Files:
-
- 1 modified
-
cleverbox/trunk/cleverbox/scripts/admin.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cleverbox/trunk/cleverbox/scripts/admin.py
r147 r149 1 1 # -*- coding: utf-8 -*- 2 2 3 import shutil s3 import shutil 4 4 import cmd 5 5 import os … … 193 193 print "\n\tCreating default configuration profile\n" 194 194 for filename in _defaults['profile_files']: 195 shutil s.copy('/usr/share/cleverbox/assets/' + filename, os.path.join(self.envname, 'profile', 'default'))195 shutil.copy('/usr/share/cleverbox/' + filename, os.path.join(self.envname, 'profiles', 'default')) 196 196 197 197
