This file contains hidden or 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: Update dat files | |
hosts: all | |
become: yes | |
vars: | |
- base_path: /etc/mosdns | |
- restart_daemon: yes | |
- daemon_service_name: mosdns | |
- clean_up_after: yes |
This file contains hidden or 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/bash | |
cd /tmp | |
wget http://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.25.3.orig.tar.gz | |
tar xvf fakeroot_1.25.3.orig.tar.gz | |
cd fakeroot-1.25.3/ | |
./bootstrap | |
./configure --prefix=/opt/fakeroot \ | |
--libdir=/opt/fakeroot/libs \ | |
--disable-static \ |