Learning Circle : cdist #3 - update __my_dotfile
This commit is contained in:
parent
65ddc29dbd
commit
91061f07fe
10 changed files with 176 additions and 27 deletions
|
@ -5,8 +5,9 @@ case "$__target_host" in
|
||||||
__motd
|
__motd
|
||||||
__timezone Asia/Seoul
|
__timezone Asia/Seoul
|
||||||
# __my_computer
|
# __my_computer
|
||||||
# __colourful_file --colour yellow
|
# __colourful_file --colour yellow --colour blue --colour red --colour green
|
||||||
__my_nginx_site $__target_host
|
# __my_dotfiles
|
||||||
|
# __my_nginx_site $__target_host
|
||||||
;;
|
;;
|
||||||
jafo.laptop)
|
jafo.laptop)
|
||||||
__motd
|
__motd
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
colour=\
|
|
||||||
yellow\
|
|
||||||
black\
|
|
||||||
white\
|
|
||||||
grey\
|
|
||||||
puple\
|
|
||||||
green\
|
|
||||||
red\
|
|
||||||
blue
|
|
|
@ -1,14 +1,14 @@
|
||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
|
|
||||||
__file ~/colourful
|
__file ~/colourful
|
||||||
printf "colour=" > ~/colourful
|
printf "colour=\n" > ~/colourful
|
||||||
|
|
||||||
# parameter with multiple values
|
# parameter with multiple values
|
||||||
if [ -f "$__object/parameter/colour" ]; then
|
if [ -f "$__object/parameter/colour" ]; then
|
||||||
colour="$(cat "$__object/parameter/colour")"
|
# colour="$(cat "$__object/parameter/colour")"
|
||||||
echo $colour >> ~/colourful
|
# printf "$colour\n" >> ~/colourful
|
||||||
# for alias in $(cat "$__object/parameter/colour"); do
|
for alias in $(cat "$__object/parameter/colour"); do
|
||||||
# echo $alias >> ~/colourful
|
printf "$alias\n" >> ~/colourful
|
||||||
# done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
115
youngjin.han/dot-cdist/type/__my_dotfiles/files/.bashrc
Normal file
115
youngjin.han/dot-cdist/type/__my_dotfiles/files/.bashrc
Normal file
|
@ -0,0 +1,115 @@
|
||||||
|
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||||
|
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||||
|
# for examples
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
case $- in
|
||||||
|
*i*) ;;
|
||||||
|
*) return;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# don't put duplicate lines or lines starting with space in the history.
|
||||||
|
# See bash(1) for more options
|
||||||
|
HISTCONTROL=ignoreboth
|
||||||
|
|
||||||
|
# append to the history file, don't overwrite it
|
||||||
|
shopt -s histappend
|
||||||
|
|
||||||
|
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||||||
|
HISTSIZE=1000
|
||||||
|
HISTFILESIZE=2000
|
||||||
|
|
||||||
|
# check the window size after each command and, if necessary,
|
||||||
|
# update the values of LINES and COLUMNS.
|
||||||
|
shopt -s checkwinsize
|
||||||
|
|
||||||
|
# If set, the pattern "**" used in a pathname expansion context will
|
||||||
|
# match all files and zero or more directories and subdirectories.
|
||||||
|
#shopt -s globstar
|
||||||
|
|
||||||
|
# make less more friendly for non-text input files, see lesspipe(1)
|
||||||
|
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||||
|
|
||||||
|
# set variable identifying the chroot you work in (used in the prompt below)
|
||||||
|
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
|
||||||
|
debian_chroot=$(cat /etc/debian_chroot)
|
||||||
|
fi
|
||||||
|
|
||||||
|
# set a fancy prompt (non-color, unless we know we "want" color)
|
||||||
|
case "$TERM" in
|
||||||
|
xterm-color|*-256color) color_prompt=yes;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# uncomment for a colored prompt, if the terminal has the capability; turned
|
||||||
|
# off by default to not distract the user: the focus in a terminal window
|
||||||
|
# should be on the output of commands, not on the prompt
|
||||||
|
#force_color_prompt=yes
|
||||||
|
|
||||||
|
if [ -n "$force_color_prompt" ]; then
|
||||||
|
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
|
||||||
|
# We have color support; assume it's compliant with Ecma-48
|
||||||
|
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
||||||
|
# a case would tend to support setf rather than setaf.)
|
||||||
|
color_prompt=yes
|
||||||
|
else
|
||||||
|
color_prompt=
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$color_prompt" = yes ]; then
|
||||||
|
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
||||||
|
else
|
||||||
|
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
||||||
|
fi
|
||||||
|
unset color_prompt force_color_prompt
|
||||||
|
|
||||||
|
# If this is an xterm set the title to user@host:dir
|
||||||
|
case "$TERM" in
|
||||||
|
xterm*|rxvt*)
|
||||||
|
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# enable color support of ls and also add handy aliases
|
||||||
|
if [ -x /usr/bin/dircolors ]; then
|
||||||
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
alias dir='dir --color=auto'
|
||||||
|
alias vdir='vdir --color=auto'
|
||||||
|
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias fgrep='fgrep --color=auto'
|
||||||
|
alias egrep='egrep --color=auto'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# colored GCC warnings and errors
|
||||||
|
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
||||||
|
|
||||||
|
export TERM=xterm-256color
|
||||||
|
|
||||||
|
# some more ls aliases
|
||||||
|
alias ll='ls -alF'
|
||||||
|
alias la='ls -A'
|
||||||
|
alias l='ls -CF'
|
||||||
|
|
||||||
|
# Alias definitions.
|
||||||
|
# You may want to put all your additions into a separate file like
|
||||||
|
# ~/.bash_aliases, instead of adding them here directly.
|
||||||
|
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
||||||
|
|
||||||
|
if [ -f ~/.bash_aliases ]; then
|
||||||
|
. ~/.bash_aliases
|
||||||
|
fi
|
||||||
|
|
||||||
|
# enable programmable completion features (you don't need to enable
|
||||||
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||||||
|
# sources /etc/bash.bashrc).
|
||||||
|
if ! shopt -oq posix; then
|
||||||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||||
|
. /usr/share/bash-completion/bash_completion
|
||||||
|
elif [ -f /etc/bash_completion ]; then
|
||||||
|
. /etc/bash_completion
|
||||||
|
fi
|
||||||
|
fi
|
24
youngjin.han/dot-cdist/type/__my_dotfiles/files/.profile
Normal file
24
youngjin.han/dot-cdist/type/__my_dotfiles/files/.profile
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# ~/.profile: executed by the command interpreter for login shells.
|
||||||
|
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||||
|
# exists.
|
||||||
|
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||||
|
# the files are located in the bash-doc package.
|
||||||
|
|
||||||
|
# the default umask is set in /etc/profile; for setting the umask
|
||||||
|
# for ssh logins, install and configure the libpam-umask package.
|
||||||
|
#umask 022
|
||||||
|
|
||||||
|
# if running bash
|
||||||
|
if [ -n "$BASH_VERSION" ]; then
|
||||||
|
# include .bashrc if it exists
|
||||||
|
if [ -f "$HOME/.bashrc" ]; then
|
||||||
|
. "$HOME/.bashrc"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# set PATH so it includes user's private bin if it exists
|
||||||
|
if [ -d "$HOME/bin" ] ; then
|
||||||
|
PATH="$HOME/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
|
export PATH=$PATH:/sbin:/usr/sbin
|
10
youngjin.han/dot-cdist/type/__my_dotfiles/manifest
Executable file
10
youngjin.han/dot-cdist/type/__my_dotfiles/manifest
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
cd "$__type/files/"
|
||||||
|
dotfiles=$(ls -a .[A-z]*)
|
||||||
|
|
||||||
|
for df in $dotfiles; do
|
||||||
|
__file ~/$df \
|
||||||
|
--mode 0644 --source "$__type/files/$df"
|
||||||
|
done
|
||||||
|
|
0
youngjin.han/dot-cdist/type/__my_dotfiles/singleton
Normal file
0
youngjin.han/dot-cdist/type/__my_dotfiles/singleton
Normal file
|
@ -16,11 +16,11 @@ nginx_config_dir="/etc/nginx/conf.d"
|
||||||
domain="$__object_id"
|
domain="$__object_id"
|
||||||
|
|
||||||
__directory /var/www/html/$domain \
|
__directory /var/www/html/$domain \
|
||||||
--parents --mode 0644
|
--parents --mode 0755
|
||||||
|
|
||||||
require="__directory//var/www/html/$domain" \
|
require="__directory//var/www/html/$domain" \
|
||||||
__file /var/www/html/$domain/index.html \
|
__file /var/www/html/$domain/index.html \
|
||||||
--source - --mode 0644 << EOF
|
--mode 0644 --source - << EOF
|
||||||
Hello Cdist!!!
|
Hello Cdist!!!
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
|
@ -89,26 +89,33 @@
|
||||||
- The *server name* should be set to the specified domain
|
- The *server name* should be set to the specified domain
|
||||||
- The *root* directive should point to /var/www/html/DOMAIN
|
- The *root* directive should point to /var/www/html/DOMAIN
|
||||||
- (replace DOMAIN with the actual domain)
|
- (replace DOMAIN with the actual domain)
|
||||||
***** Use both types in the initial manifest to configure the target host
|
***** DONE Use both types in the initial manifest to configure the target host
|
||||||
|
CLOSED: [2020-05-15 금 21:07]
|
||||||
- Create at least two domains
|
- Create at least two domains
|
||||||
***** Configure the target host
|
***** DONE Configure the target host
|
||||||
|
CLOSED: [2020-05-15 금 21:08]
|
||||||
- Verify that the configuration files are properly created
|
- Verify that the configuration files are properly created
|
||||||
***** Delete the nginx package manually on the target host
|
***** DONE Delete the nginx package manually on the target host
|
||||||
***** Comment out *__my_nginx* from the initial manifest, keep the *__my_nginx_site*
|
CLOSED: [2020-05-15 금 21:08]
|
||||||
|
***** DONE Comment out *__my_nginx* from the initial manifest, keep the *__my_nginx_site*
|
||||||
|
CLOSED: [2020-05-15 금 21:08]
|
||||||
- Explain the error that you get (in your cdist.org file)
|
- Explain the error that you get (in your cdist.org file)
|
||||||
* 2020-05-08
|
* 2020-05-08
|
||||||
*** cdist #3: type parameters
|
*** cdist #3: type parameters
|
||||||
**** Lecture content
|
**** Lecture content
|
||||||
***** TODO Create a new type named *__colourful_file*
|
***** DONE Create a new type named *__colourful_file*
|
||||||
|
CLOSED: [2020-05-15 금 20:29]
|
||||||
- The objective is to create a type that creates colourful file
|
- The objective is to create a type that creates colourful file
|
||||||
- The content of the file should be "colour=...", where "..." is a colour specified by a parameter
|
- The content of the file should be "colour=...", where "..." is a colour specified by a parameter
|
||||||
- Add an *optional parameter* named *colour*
|
- Add an *optional parameter* named *colour*
|
||||||
- Use the **__file** type inside your type to create a file
|
- Use the **__file** type inside your type to create a file
|
||||||
- Use the *$__object_id* variable inside your type
|
- Use the *$__object_id* variable inside your type
|
||||||
***** TODO Extend your type to be more colourful
|
***** DONE Extend your type to be more colourful
|
||||||
|
CLOSED: [2020-05-15 금 20:29]
|
||||||
- Modify the *optional parameter* to be able to be specified *multiple times*
|
- Modify the *optional parameter* to be able to be specified *multiple times*
|
||||||
- For each time it is specified, add a line "colour=..." to the file
|
- For each time it is specified, add a line "colour=..." to the file
|
||||||
***** TODO Create a new type *__my_dotfiles*
|
***** DONE Create a new type *__my_dotfiles*
|
||||||
|
CLOSED: [2020-05-15 금 21:07]
|
||||||
- Objective is to manage the dotfiles in your home directory
|
- Objective is to manage the dotfiles in your home directory
|
||||||
- Make it a *singleton* type
|
- Make it a *singleton* type
|
||||||
- Create a sub directory *files* in the type
|
- Create a sub directory *files* in the type
|
||||||
|
@ -116,7 +123,8 @@
|
||||||
- Add a *for* loop to your type to deploy .[A-z]* to your home directory
|
- Add a *for* loop to your type to deploy .[A-z]* to your home directory
|
||||||
- Add a .bashrc or .zshrc to the files folder (depending on your shell)
|
- Add a .bashrc or .zshrc to the files folder (depending on your shell)
|
||||||
- In the initial manifest, add __my_dotfiles when the target host is localhost
|
- In the initial manifest, add __my_dotfiles when the target host is localhost
|
||||||
***** TODO As usual commit all changes to your ungleich-learning-circle repo
|
***** DONE As usual commit all changes to your ungleich-learning-circle repo
|
||||||
|
CLOSED: [2020-05-15 금 21:07]
|
||||||
* 2020-05-06
|
* 2020-05-06
|
||||||
** cdist #2: Your first cdist type
|
** cdist #2: Your first cdist type
|
||||||
**** Lecture content
|
**** Lecture content
|
||||||
|
|
Loading…
Reference in a new issue