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 | |
# Fork of https://gist.github.com/thefloweringash/8729473 | |
# | |
# freebsd-update is a clever script that downloads a lot of bsdiff | |
# patches and whole files when patches are not suitable. The result of | |
# this process is a collection of files in | |
# /var/db/freebsd-update/files. If the files already exist, it will | |
# not fetch them again. | |
# |
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 | |
exec 2>&1 | |
export MIX_ENV=prod | |
export HOME=/usr/local/pleroma | |
export PATH=${PATH}:/usr/local/bin:/usr/local/sbin | |
export LANG=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
#export ERL_COMPILER_OPTIONS="native" |
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 | |
# | |
# $FreeBSD$ | |
# | |
# PROVIDE: pleroma | |
# REQUIRE: LOGIN | |
# | |
# Add the following line to /etc/rc.conf to enable pleroma: | |
# | |
# pleroma_enable="YES" |