mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
Fix indentation for sed plugin
This commit is contained in:
parent
57a0dd4b9f
commit
d05c97afef
1 changed files with 5 additions and 5 deletions
|
@ -6,10 +6,10 @@ import os
|
||||||
|
|
||||||
|
|
||||||
class DoSeds(Task):
|
class DoSeds(Task):
|
||||||
description = 'Sedding files'
|
description = 'Sedding files'
|
||||||
phase = phases.system_modification
|
phase = phases.system_modification
|
||||||
after = [AptUpgrade]
|
after = [AptUpgrade]
|
||||||
def run(self, info):
|
|
||||||
|
|
||||||
chroot_path = os.path.join(info.root, info.manifest.plugins['sed']['file'])
|
def run(self, info):
|
||||||
sed_i(chroot_path, info.manifest.plugins['sed']['find'], info.manifest.plugins['sed']['replace'])
|
chroot_path = os.path.join(info.root, info.manifest.plugins['sed']['file'])
|
||||||
|
sed_i(chroot_path, info.manifest.plugins['sed']['find'], info.manifest.plugins['sed']['replace'])
|
||||||
|
|
Loading…
Add table
Reference in a new issue