Skip to content
View MarcosBernal's full-sized avatar

Block or report MarcosBernal

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. cloudformation-manager cloudformation-manager Public

    Deploying CloudFormation stacks through an easy way

    Python

  2. Git Hook to check the .gitlab-ci.yml... Git Hook to check the .gitlab-ci.yml file before creating a commit (pre-commit). It sends the file to gitlab ci lint to check it
    1
    #!/bin/bash
    2
    
                  
    3
    ###########################
    4
    # Validate .gitlab-ci.yml #
    5
    #    by  Peter Weinert    #
  3. SSH configuration, key creation and ... SSH configuration, key creation and key fingerprint check
    1
    ### Generating a key pair with ssh-genkey
    2
    1. Generate the key with `$ ssh-keygen -t rsa -b 4096 -v` and when asked to enter file in which to save the key, type `my-certificate` and when asked to enter passphrase, press Enter (empty passphrase) and confirm by Enter.
    3
    2. You will get two files generated, one will be my-certificate and one will be my-certificate.pub, make `my-certificate` on your computer read-only `sudo chmod 400 my-certificate`
    4
    3. Upload the public certificate to to server: `ssh-copy-id -i my-certificate.pub user@hostname`
    5
        - By default appends user key in ~/.ssh/authorized_keys of the remote machine