Skip to content

Commit

Permalink
Core 76: Fix sed command.
Browse files Browse the repository at this point in the history
There was a syntax error in one of the sed commands, which produced the following error:
sed: -e expression #1, char 34: unknown option to `s'.
  • Loading branch information
DaStevee committed Jan 18, 2014
1 parent 917ee26 commit 0053269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/rootfiles/core/76/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ sed -i -e "s/tty1 9600$/tty1 9600 --noclear/g" /etc/inittab
sed -i -e "s/^proc/#proc/g" /etc/fstab
sed -i -e "s/^sysfs/#sysfs/g" /etc/fstab
sed -i -e "s/^devpts/#devpts/g" /etc/fstab
sed -i -e "s|^none\s/var/run|#none /var/run|/g" /etc/fstab
sed -i -e "s|^none\s/var/run|#none /var/run|g" /etc/fstab

# Convert udev persistent network rules
sed -i -e "s/SYSFS{/ATTR{/g" /etc/udev/rules.d/30-persistent-network.rules
Expand Down

0 comments on commit 0053269

Please sign in to comment.