[root@localhost ~]# mkdir /centos_chroot
[root@localhost ~]# mkdir -p /centos_chroot/var/lib/rpm
See my working application (and additional notes) here:
https://github.com/integralist/simple-rpm
Other information that led to the above repository, can be found below
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| # Credit http://stackoverflow.com/a/2514279 | |
| for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |
| --- | |
| - name: test if grub configured for noop i/o scheduler | |
| command: egrep -q 'elevator=noop' /boot/grub2/grub.cfg | |
| register: grub | |
| changed_when: no | |
| failed_when: grub_test.rc == 2 | |
| - name: configure grub for noop i/o scheduler | |
| sudo: yes | |
| command: grubby --update-kernel=ALL --args=elevator=noop |