style: add YAML document start markers to Ansible playbooks and tasks
This commit is contained in:
7
bin/dotf
7
bin/dotf
@ -49,6 +49,10 @@ def service(args):
|
||||
"""Run the service/docker action"""
|
||||
return run_script(f"{DOTFILES_BIN}/actions/service.py", args)
|
||||
|
||||
def lint(args):
|
||||
"""Run the lint action"""
|
||||
return run_script(f"{DOTFILES_BIN}/actions/lint.py", args)
|
||||
|
||||
def ensure_git_hooks():
|
||||
"""Ensure git hooks are correctly set up"""
|
||||
hooks_dir = os.path.join(DOTFILES_ROOT, ".git/hooks")
|
||||
@ -103,7 +107,8 @@ def main():
|
||||
"hello": hello,
|
||||
"secrets": secrets,
|
||||
"auto-start": auto_start,
|
||||
"service": service
|
||||
"service": service,
|
||||
"lint": lint
|
||||
}
|
||||
|
||||
if command in commands:
|
||||
|
Reference in New Issue
Block a user