diff --git a/misc/dear-ministers.mdwn b/misc/dear-ministers.mdwn new file mode 100644 index 0000000..5084795 --- /dev/null +++ b/misc/dear-ministers.mdwn @@ -0,0 +1,30 @@ +Friday, December 9, 2011 at 12:39 pm + +Dear ministers of our Lord, + +I am a minister of the Lord God who has been called to contact you +concerning a corporate fast that the Father God has led me to share with +you. + +I have recently completed an 80 day fast (mostly water) on Oct. 30, in +which the Father shared with me that he wants His people in the Los +Alamos area to Fast and Pray and seek Him for His will and for you and +your congregations, as well as for what He wants to do in your life, +their lives and in the Northern New Mexico area. + +He shared with me that the weekly Los Alamos City Wide Worship and +Prayer Group should advertise in the Los Alamos Monitor a corporate 10 +day fast for all ministers of Father God. + +Also, all Christians are also encouraged to join in the corporate +fast. This fast will begin Monday, and end Dec. 21. + +We praise God we have now more than 10 individuals committed to doing +this fast. We need all of you to join us in obeying Father God and +allowing Him to do as He has planned. + +God is calling His church in this season to Fast and Pray. He is also +calling her to consecrate and obey Him. + +Keegan Juniper +Kindle the Fire of God Ministries diff --git a/papers/arch-runit.mdwn b/papers/arch-runit.mdwn index d80061a..634acac 100644 --- a/papers/arch-runit.mdwn +++ b/papers/arch-runit.mdwn @@ -127,10 +127,10 @@ then create a new `init` similar to this (don't forget to `chmod +x`): #! /bin/sh - + PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin export PATH - + if [ $$ -ne 1 ]; then case $1 in 6) @@ -140,26 +140,47 @@ then create a new `init` similar to this exec kill -12 1 ;; esac - + echo "LOL: runit doesn't have run levels" 1>&2 exit 1 fi - + # Run arch's sysinit - /etc/rc.sysinit + if ! /etc/rc.sysinit; then + # Kludge it if there's no rc.sysinit + mount -t proc proc /proc -o nosuid,noexec,nodev + mount -t sysfs sys /sys -o nosuid,noexec,nodev + mount -t tmpfs run /run -o mode=0755,nosuid,nodev + mount -t devtmpfs dev /dev -o mode=0755,nosuid + mkdir -p /dev/{pts,shm} + mount -t devpts devpts /dev/pts -o mode=0620,gid=5,nosuid,noexec + mount -t tmpfs shm /dev/shm -o mode=1777,nosuid,nodev + + # This doesn't ever run fsck :< + mount -o remount,rw / + + : < /etc/hostname > /proc/sys/kernel/hostname + + hwclock --systz + + # Start/trigger udev, load MODULES, and settle udev + udevd_modprobe sysinit + fi + + if grep -q 'break=init' /proc/cmdline; then echo 'Breaking before init, type "exit" to continue booting' /bin/sh fi + # XXX: Who creates this? rm /run/nologin - + # Hand off to runit exec runsvdir -P -s runit-signal /service - This will still run `udev` and `bootlogd` from `/etc/rc.sysinit`. I tried to set up `mdev` from busybox as a `udev` replacement, but Xorg wants `udev`, @@ -265,8 +286,9 @@ The following in `/service/tty2/run` will start a getty on the second virtual co #! /bin/sh - tty=${$(pwd)##*/} - exec agetty $tty + pwd=$(pwd) + TTY=${pwd##*/} + exec agetty $TTY You can make more than one getty by copying this to `/service/tty3/run` and so on.