This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
worldreadpythonlibs_version="2018-04-06a" | |
for word in /usr/lib{,64}/python2.7/site-packages ; | |
do | |
find ${word} -exec chmod g+rX,o+rX {} \; | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ansibleown_version="2018-04-04a" | |
tu=ansible | |
tg="$( id -ng "${tu}" )" | |
for word in $@ ; | |
do | |
# set group accessible | |
find ${word} -exec chown "${tu}:${tg}" {} \; -exec chmod g+rwX {} \; | |
# set setgid and sticky bits | |
find ${word} -type d -exec chmod g+s,o+t {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# File: /etc/ansible/books/stable/clone/dependencies/sapsnug.sh | |
# Author: bgstack15 | |
# Startdate: 2018-04-05 10:12 | |
# Title: Script to Accept Parameters to Send to Nsupdate Using Gsstsig | |
# Purpose: To wrap nsupdate -g in ansible | |
# History: | |
# Usage: | |
# Run as root, or define variables SNUG_PASSWORD and SNUG_USERNAME | |
# Variables: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example script name: fetch | |
clean_fetch() { | |
# Delayed cleanup | |
if test -z "${FETCH_NO_CLEAN}" ; | |
then | |
nohup /bin/bash <<EOF 1>/dev/null 2>&1 & | |
sleep "${FETCH_CLEANUP_SEC:-300}" ; /bin/rm -r "${FETCH_TMPDIR:-NOTHINGTODELETE}" 1>/dev/null 2>&1 ; | |
EOF | |
fi | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Filename: access_like.yml | |
# Location: /etc/ansible/playbooks/access_like.yml | |
# Author: bgstack15 | |
# Startdate: 2018-02-01 15:00 | |
# Title: Playbook that Sets Access Like a User for a Different User | |
# Purpose: To make it easy to set up similar user access | |
# History: | |
# 2018-02-02 Add sssd support | |
# 2018-02-09 Add basic sudoers checking |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Filename: userinfo.sh | |
# Author: [email protected] | |
# Startdate: 2018-01-03 16:11 | |
# Title: Script that Displays User Info | |
# Purpose: Displays specific metrics this environment would like to query | |
# History: | |
# Usage: | |
# Reference: | |
# id -Gnz https://stackoverflow.com/questions/14059916/is-there-a-command-to-list-all-unix-group-names/29615866#29615866 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# File: hash-cert-dir.sh | |
# Location: /etc/ansible/roles/general_conf/files/hash-cert-dir.sh | |
# Author: [email protected] | |
# Startdate: 2017-12-18 | |
# Title: Script that Makes Symlinks for Certs in a Directory | |
# Purpose: Make a directory suitable for openldap to use as TLS_CACERTDIR | |
# History: | |
# Usage: | |
# HCD_SOURCEDIR=/etc/pki/ca-trust/source/anchors HCD_LINKDIR=/etc/openldap/cacerts hash-cert-dir.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
htmlize () { $( which sed ) -r -e 's/</\xCAlt;/g;' -e 's/>/\xCAgt;/g;' -e 's/\&/\&amp;/g;' -e 's/\xCA([lg])t;/\&\1t;/g;' ; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# read stdin | |
grep -oE 'href=\".+\"' | sed -r -e 's/^href=\"//g;' -e 's/\"\s*$//;' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name: xfe | |
Version: 1.42 | |
Summary: X File Explorer (Xfe) is a file manager for X. | |
Release: 1{?dist} | |
License: GPL | |
Group: File tools | |
Requires: fox >= 1.6 libpng >= 1.2 | |
BuildRequires: fox-devel >= 1.6 libpng-devel >= 1.2 glib-devel libXft-devel freetype-devel gcc-c++ | |
Source: %{name}-%{version}.tar.gz | |
Packager: Roland Baudin <[email protected]> |
NewerOlder