GithubHelp home page GithubHelp logo

fourdollars / samba-resource Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 1.0 41 KB

concourse-ci's samba-resource

Home Page: https://fourdollars.github.io/

License: MIT License

Dockerfile 2.79% Shell 97.21%
concourse-ci-resource samba

samba-resource's Introduction

GitHub: fourdollars/samba-resource License: MIT Bash Docker Docker Pulls

samba-resource

concourse-ci's samba-resource

Config

Resource Type

resource_types:
- name: resource-samba
  type: registry-image
  source:
    repository: fourdollars/samba-resource
    tag: latest

or

resource_types:
- name: resource-samba
  type: registry-image
  source:
    repository: ghcr.io/fourdollars/samba-resource
    tag: latest

Resource

  • servicename: required
  • username: optional
  • password: optional
  • path: optional
  • overwrite: optional, true by default and it can be overriden by params.overwrite of put step below.
resources:
- name: storage
  type: resource-samba
  source:
    servicename: //domain.name.or.ip/share_point
    username: YourUserName
    password: YourPassWord
    path: PrimaryFolder
    overwrite: false

get step

  • path: optional
  • files: optional
  • skip: optional, set true if you just want to list files and folders.
- get: storage
  params:
    path: SecondaryFolder
    files:
      - file1.txt
      - file2.txt
    skip: false
# It acts like the following commands.
$ smbclient //domain.name.or.ip/share_point -U YourUserName YourPassWord -D "PrimaryFolder/SecondaryFolder" -Tc /tmp/backup.tar file1.txt file2.txt
$ cd /tmp
$ tar xf /tmp/backup.tar
$ mv PrimaryFolder/SecondaryFolder/* /tmp/build/get

put step

  • from: required
  • files: optional
  • overwrite: optional
  • path: optional
  • skip: optional if you don't want the implicit get step after the put step to download the same content again in order to save the execution time.
- put: storage
  params:
    from: SomeFolderInTask
    files:
      - file1.txt
      - file2.txt
    overwrite: false
    path: SecondaryDirectory
  get_params:
    skip: true
# It acts like the following commands.
$ cd /tmp/build/put/SomeFolderInTask
$ tar cf /tmp/backup.tar file1.txt file2.txt
$ smbclient //domain.name.or.ip/share_point -U YourUserName YourPassWord -D "PrimaryFolder/SecondaryFolder" -Tx /tmp/backup.tar

samba-resource's People

Contributors

fourdollars avatar

Watchers

 avatar  avatar

Forkers

luis-nagaki

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.