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
# Fixed copyright notice year | |
# | |
# The date should be the date of first publication | |
for FILE in $(find . -type f); do | |
YEAR=$(git log --format="%ci" --diff-filter=A -- $FILE | cut -d "-" -f 1); | |
sed -i "s#Copyright [0-9]* tsuru authors#Copyright $YEAR tsuru authors#g" $FILE; | |
echo "$YEAR: $FILE"; | |
done |
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
# File: /lib/systemd/system/thumbor.service | |
[Unit] | |
Description=Photo thumbnail service | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/thumbor -c /etc/thumbor.conf | |
[Install] |
NewerOlder