All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.woostju.ansible.command.GitCommand Maven / Gradle / Ivy

There is a newer version: 1.0.0-RELEASE
Show newest version
package com.github.woostju.ansible.command;

import java.util.List;

import org.assertj.core.util.Lists;

import com.github.woostju.ansible.Module;

/**
 * Deploy software (or files) from git checkouts
 * 

Get more information from git module. * @author jameswu * */ public class GitCommand extends Command{ public GitCommand(List hosts, List module_args, List options) { super(hosts, Module.git.toString(), module_args, options); } /** * * @param hosts target hosts * @param gitRepo git, SSH, or HTTP(S) protocol address of the git repository. * @param destDirectory The path of where the repository should be checked out. * @param gitSshKeyFilePath Key file of ssh repository */ public GitCommand(List hosts, String gitRepo, String destDirectory, String gitSshKeyFilePath) { this(hosts, Lists.newArrayList(), null); this.getModuleArgs().add("force=yes"); if (gitSshKeyFilePath!=null) { this.getModuleArgs().add("key_file="+gitSshKeyFilePath); } if(gitRepo!=null) { this.getModuleArgs().add("repo="+gitRepo); } if (destDirectory!=null) { this.getModuleArgs().add("dest="+destDirectory); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy