Change local_install to localInstall

This commit is contained in:
rshipp 2015-03-04 08:19:26 -07:00
parent 880c19c195
commit f3319e1ef4
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ def run_operations(pkgman, entry):
pkgman.install(entry[key]) pkgman.install(entry[key])
elif key == "remove": elif key == "remove":
pkgman.remove(entry[key]) pkgman.remove(entry[key])
elif key == "local_install": elif key == "localInstall":
pkgman.install(entry[key], from_local=True) pkgman.install(entry[key], from_local=True)

View File

@ -39,5 +39,5 @@ backend: packagekit
# install: # install:
# - pkgs6 # - pkgs6
# - pkg7 # - pkg7
# - local_install: # - localInstall:
# - /path/to/pkg8 # - /path/to/pkg8